13 references to ProxyElement
System (13)
net\System\Net\Configuration\DefaultProxySection.cs (13)
67public ProxyElement Proxy 69get { return (ProxyElement)this[this.proxy]; } 102typeof(ProxyElement), 150if (section.Proxy.AutoDetect == ProxyElement.AutoDetectValues.Unspecified && 153section.Proxy.UseSystemDefault != ProxyElement.UseSystemDefaultValues.True && 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 && 236if (section.Proxy.AutoDetect != ProxyElement.AutoDetectValues.Unspecified) 238tempProxy.AutoDetect = section.Proxy.AutoDetect == ProxyElement.AutoDetectValues.True; 244if (section.Proxy.BypassOnLocal != ProxyElement.BypassOnLocalValues.Unspecified) 246tempProxy.BypassProxyOnLocal = section.Proxy.BypassOnLocal == ProxyElement.BypassOnLocalValues.True;