2

我有一个小应用程序,我想运行并 ping 一个内部网站。这是代码:

using (var client = new WebClient())
{
    client.DownloadString("http://MyServer/dev/MyApp");
}

但是,它抛出以下错误:

远程服务器返回错误:(401) Unauthorized。

我拥有访问服务器的所有正确凭据。我在想我不知道如何很好地使用 WebClient,我只需要在客户端对象上设置属性。有任何想法吗?

4

1 回答 1

2

我找到了答案。我需要使用 WebClient 的 NetworkCredentials() 方法。见下文:

    using (var client = new WebClient())
    {
        client.Credentials = new NetworkCredential ("theUser", "thePassword", "theDomain"); 
        client.DownloadString("http://MyServer/dev/MyApp");
    }

这是帮助我的网址

于 2012-08-30T19:12:15.873 回答