WebRequest.GetSystemWebProxy() doesn't include uri

560 Views Asked by At

I'm trying to get the system proxy:

var proxy = WebRequest.GetSystemWebProxy();

However, the proxy object returned has its Address property always null.

The proxy is set in the Internet Options window.

Internet Options Proxy Settings: 127.0.0.1: 8888

1

There are 1 best solutions below

1
On

In msdn, it shows "GetSystemWebProxy method reads the current user's Internet Explorer (IE) proxy settings.".

So if you are developing a web app and deployed it to IIS, please check the identity of the app pool is same as the current user, which you have set the proxy. And make sure the IE proxy has been checked.