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