gpt4 book ai didi

c# - 使用 WebClient 来 ping 一个网站

转载 作者:太空宇宙 更新时间:2023-11-03 11:17:32 24 4
gpt4 key购买 nike

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

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

但是,它抛出以下错误:

The remote server returned an error: (401) Unauthorized.

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

最佳答案

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

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

This is the URL that helped me

关于c# - 使用 WebClient 来 ping 一个网站,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12202933/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com