Is it possible?
Currently I'm trying per domain to get what proxy the system designates to it, this way:
Uri website = new Uri("http://google.com");
System.Net.IWebProxy defaultproxy = System.Net.WebRequest.GetSystemWebProxy();
Uri proxy = defaultproxy.GetProxy(website);
This way I know what proxy the system gives me to google.com. But is it possible to get the whole pac file (javascript)?