1 interface inheriting from IWebProxy
System (1)
net\System\Net\_ProxyChain.cs (1)
12internal interface IAutoWebProxy : IWebProxy
58 references to IWebProxy
PresentationCore (5)
Core\CSharp\MS\Internal\IO\Packaging\ByteRangeDownloader.cs (2)
338internal IWebProxy Proxy 957private IWebProxy _proxy;
Core\CSharp\MS\Internal\IO\Packaging\PseudoWebRequest.cs (2)
254public override IWebProxy Proxy 384private IWebProxy _proxy;
Core\CSharp\System\IO\Packaging\PackWebRequest.cs (1)
387public override IWebProxy Proxy
System (36)
net\System\Net\Configuration\DefaultProxySection.cs (4)
192if (!typeof(IWebProxy).IsAssignableFrom(theType)) 198this.webProxy = (IWebProxy)Activator.CreateInstance( 312internal IWebProxy WebProxy 317private IWebProxy webProxy;
net\System\Net\filewebrequest.cs (5)
33IWebProxy m_proxy; 67m_proxy = (IWebProxy)serializationInfo.GetValue("proxy", typeof(IWebProxy)); 95serializationInfo.AddValue("proxy", m_proxy, typeof(IWebProxy)); 183public override IWebProxy Proxy {
net\System\Net\FtpWebRequest.cs (3)
201private IWebProxy m_Proxy; 447public override IWebProxy Proxy { 486IWebProxy proxy = m_Proxy;
net\System\Net\GlobalProxySelection.cs (3)
14public static IWebProxy Select 18IWebProxy proxy = WebRequest.DefaultWebProxy; 37public static IWebProxy GetEmptyWebProxy() {
net\System\Net\HttpWebRequest.cs (6)
216private IWebProxy _Proxy; 2686public override IWebProxy Proxy { 2713internal IWebProxy InternalProxy { 5274_Proxy = (IWebProxy)serializationInfo.GetValue("_Proxy", typeof(IWebProxy)); 5352serializationInfo.AddValue("_Proxy", _Proxy, typeof(IWebProxy));
net\System\Net\ServicePointManager.cs (3)
661public static ServicePoint FindServicePoint(string uriString, IWebProxy proxy) { 675public static ServicePoint FindServicePoint(Uri address, IWebProxy proxy) { 683internal static ServicePoint FindServicePoint(Uri address, IWebProxy proxy, out ProxyChain chain, ref HttpAbortDelegate abortDelegate, ref int abortState)
net\System\Net\webclient.cs (2)
50IWebProxy m_Proxy; 239public IWebProxy Proxy {
net\System\Net\WebRequest.cs (8)
764public virtual IWebProxy Proxy { 863IWebProxy proxy = null; 900IWebProxy proxy = null; 1024private static volatile IWebProxy s_DefaultWebProxy; 1027internal static IWebProxy InternalDefaultWebProxy 1071public static IWebProxy DefaultWebProxy 1089public static IWebProxy GetSystemWebProxy() 1095internal static IWebProxy InternalGetSystemWebProxy()
net\System\Net\WebSockets\ClientWebSocket.cs (2)
408private IWebProxy proxy; 460public IWebProxy Proxy
System.Runtime.Remoting (4)
channels\http\httpclientchannel.cs (4)
56private IWebProxy _proxyObject = null; // proxy object for request, can be overridden in transport sink 361internal IWebProxy ProxyObject { get { return _proxyObject; } } 448private IWebProxy _proxyObject = null; // overrides channel proxy object if non-null 604IWebProxy proxy = _proxyObject;
System.ServiceModel (5)
System\ServiceModel\Channels\HttpChannelFactory.cs (3)
60IWebProxy proxy; 255public IWebProxy Proxy 2142public IWebProxy CreateWebProxy(HttpWebRequest request, SecurityTokenProviderContainer tokenProvider, TimeSpan timeout)
System\ServiceModel\Channels\HttpTransportBindingElement.cs (2)
41IWebProxy webProxy; 339internal IWebProxy Proxy
System.Web.Services (2)
System\Web\Services\Protocols\ClientProtocol.cs (2)
718private IWebProxy proxy; 825public IWebProxy Proxy {
System.Xml (6)
System\Xml\XmlDownloadManager.cs (2)
27internal Stream GetStream(Uri uri, ICredentials credentials, IWebProxy proxy, 37private Stream GetNonFileStream( Uri uri, ICredentials credentials, IWebProxy proxy,
System\Xml\XmlDownloadManagerAsync.cs (2)
20internal Task<Stream> GetStreamAsync(Uri uri, ICredentials credentials, IWebProxy proxy, 30private async Task<Stream> GetNonFileStreamAsync(Uri uri, ICredentials credentials, IWebProxy proxy,
System\Xml\XmlUrlResolver.cs (2)
20private IWebProxy _proxy; 43public IWebProxy Proxy {