我有一个小应用程序,我想运行并 ping 一个内部网站。这是代码:
using (var client = new WebClient())
{
client.DownloadString("http://MyServer/dev/MyApp");
}
但是,它抛出以下错误:
远程服务器返回错误:(401) Unauthorized。
我拥有访问服务器的所有正确凭据。我在想我不知道如何很好地使用 WebClient,我只需要在客户端对象上设置属性。有任何想法吗?
我有一个小应用程序,我想运行并 ping 一个内部网站。这是代码:
using (var client = new WebClient())
{
client.DownloadString("http://MyServer/dev/MyApp");
}
但是,它抛出以下错误:
远程服务器返回错误:(401) Unauthorized。
我拥有访问服务器的所有正确凭据。我在想我不知道如何很好地使用 WebClient,我只需要在客户端对象上设置属性。有任何想法吗?