WebClient is very slow

后端 未结 3 808
[愿得一人]
[愿得一人] 2020-12-17 18:36

I have problem with Webclient.

It is very slow. It takes about 3-5 seconds to downloadString from one website. I don\'t have any network problems.

This is my

3条回答
  •  青春惊慌失措
    2020-12-17 19:31

    There are a few options if it is related to the initial proxy settings being checked:

    1. Disable the automatic proxy detection settings in Internet Explorer
    2. Set the proxy to null:

      WebClient.Proxy = null

    3. On application startup set the default webproxy to null:

      WebRequest.DefaultWebProxy = null;

    In older .NET code instead of setting to null, you used to write this (but null is now preferred):

    webclient.Proxy = GlobalProxySelection.GetEmptyWebProxy();
    

提交回复
热议问题