.NET proxy detection

前端 未结 2 967
天命终不由人
天命终不由人 2021-02-07 18:10

I am having an issue with .NET detecting the proxy settings configured through internet explorer.

I\'m writing a client application that supports proxies, and to test I

2条回答
  •  梦谈多话
    2021-02-07 18:53

    I had the same issue and I succeded getting/setting the proxy setting in registry:

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]   
    "ProxyServer"="<your proxy IP address>:8080"
    "ProxyEnable"=dword:00000001
    "ProxyOverride"="<local>"
    

提交回复
热议问题