4 writes to _ProxyAddress
System (4)
net\System\Net\webproxy.cs (4)
84
_ProxyAddress
= Address;
143
_ProxyAddress
= value;
443
_ProxyAddress
= (Uri)serializationInfo.GetValue("_ProxyAddress", typeof(Uri));
533
_ProxyAddress
= webProxyData.proxyAddress;
5 references to _ProxyAddress
System (5)
net\System\Net\webproxy.cs (5)
137
return
_ProxyAddress
;
283
Uri proxy = proxyHostAddresses!=null ? proxyHostAddresses[destination.Scheme] as Uri :
_ProxyAddress
;
409
return (
_ProxyAddress
==null && _ProxyHostAddresses==null) || (_BypassOnLocal && IsLocal(host)) || IsMatchInBypassList(host) || IsLocalInProxyHash(host);
474
serializationInfo.AddValue("_ProxyAddress",
_ProxyAddress
);
673
Uri proxy =
_ProxyAddress
;