Csharp/C#教程:WebClient非常慢分享


WebClient非常慢

我有Webclient的问题。

这很慢。 从一个网站下载String需要大约3-5秒。 我没有任何网络问题。

这是我的Modifed WebClient。

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; namespace StatusChecker { class WebClientEx: WebClient { public CookieContainer CookieContainer { get; private set; } public WebClientEx() { CookieContainer = new CookieContainer(); ServicePointManager.Expect100Continue = false; Encoding = System.Text.Encoding.UTF8; WebRequest.DefaultWebProxy = null; Proxy = null; } public void ClearCookies() { CookieContainer = new CookieContainer(); } protected override WebRequest GetWebRequest(Uri address) { var request = base.GetWebRequest(address); if (request is HttpWebRequest) { (request as HttpWebRequest).CookieContainer = CookieContainer; } return request; } } } 

更新:在wireshark中,我看到单个DownladString正在发送和接收数千个数据包。

这里可能有两个问题(我之前在自己的程序中也注意到了这个问题):

也许它会对某人有所帮助。 某些Web服务支持压缩(gzip或其他)。 因此,您可以为请求添加Accept-Encoding标头,然后为Web客户端实例启用自动解压缩 。 Chrome以这种方式工作。

如果它与正在检查的初始代理设置相关,则有几个选项:

  1. 禁用Internet Explorer中的自动代理检测设置
  2. 将代理设置为null:

    WebClient.Proxy = null

  3. 在应用程序启动时,将默认webproxy设置为null:

    WebRequest.DefaultWebProxy = null;

在较旧的.NET代码中,而不是设置为null,您曾经写过这个(但现在首选null):

上述就是C#学习教程:WebClient非常慢分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—计算机技术网(www.ctvol.com)!

 webclient.Proxy = GlobalProxySelection.GetEmptyWebProxy(); 

本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

ctvol管理联系方式QQ:251552304

本文章地址:https://www.ctvol.com/cdevelopment/997130.html

(0)
上一篇 2021年12月26日
下一篇 2021年12月26日

精彩推荐