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)
137return _ProxyAddress; 283Uri proxy = proxyHostAddresses!=null ? proxyHostAddresses[destination.Scheme] as Uri : _ProxyAddress; 409return (_ProxyAddress==null && _ProxyHostAddresses==null) || (_BypassOnLocal && IsLocal(host)) || IsMatchInBypassList(host) || IsLocalInProxyHash(host); 474serializationInfo.AddValue("_ProxyAddress", _ProxyAddress); 673Uri proxy = _ProxyAddress;