可能吗?
目前我正在尝试每个域获得系统指定给它的代理,如下所示:
Uri website = new Uri("http://google.com");
System.Net.IWebProxy defaultproxy = System.Net.WebRequest.GetSystemWebProxy();
Uri proxy = defaultproxy.GetProxy(website);
这样我就知道系统给我的google.com代理是什么了。但是有可能得到整个pac文件(javascript)吗?
嗯,我不确定这是否是最佳实践,但到目前为止我所管理的是使用regedit
阅读它。相关的键位于这里:
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsAutoConfigURL
希望对大家有所帮助。