17 references to Proxy
System (17)
net\System\Net\Configuration\DefaultProxySection.cs (17)
150if (section.Proxy.AutoDetect == ProxyElement.AutoDetectValues.Unspecified && 151section.Proxy.ScriptLocation == null && 153section.Proxy.UseSystemDefault != ProxyElement.UseSystemDefaultValues.True && 154section.Proxy.ProxyAddress == null && 155section.Proxy.BypassOnLocal == ProxyElement.BypassOnLocalValues.Unspecified && 159if (section.Proxy.UseSystemDefault == ProxyElement.UseSystemDefaultValues.False) 209else if (section.Proxy.UseSystemDefault == ProxyElement.UseSystemDefaultValues.True && 210section.Proxy.AutoDetect == ProxyElement.AutoDetectValues.Unspecified && 211section.Proxy.ScriptLocation == null) 236if (section.Proxy.AutoDetect != ProxyElement.AutoDetectValues.Unspecified) 238tempProxy.AutoDetect = section.Proxy.AutoDetect == ProxyElement.AutoDetectValues.True; 240if (section.Proxy.ScriptLocation != null) 242tempProxy.ScriptLocation = section.Proxy.ScriptLocation; 244if (section.Proxy.BypassOnLocal != ProxyElement.BypassOnLocalValues.Unspecified) 246tempProxy.BypassProxyOnLocal = section.Proxy.BypassOnLocal == ProxyElement.BypassOnLocalValues.True; 248if (section.Proxy.ProxyAddress != null) 250tempProxy.Address = section.Proxy.ProxyAddress;