3 implementations of IWebProxy
System.Net.WebProxy (2)
System\Net\WebProxy.cs (1)
16public partial class WebProxy : IWebProxy, ISerializable
System\Net\WebProxy.NonWasm.cs (1)
10public partial class WebProxy : IWebProxy, ISerializable
System.Net.WebSockets.Client (1)
System\Net\WebSockets\WebSocketHandle.Managed.cs (1)
534internal sealed class DefaultWebProxy : IWebProxy
43 references to IWebProxy
dotnet-svcutil-lib (3)
FrameworkFork\Microsoft.Xml\Xml\XmlUrlResolver.cs (2)
21private IWebProxy _proxy; 35public IWebProxy Proxy
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceModelHttpMessageHandler.cs (1)
40public IWebProxy Proxy
Microsoft.AspNetCore.Http.Connections.Client (3)
HttpConnectionOptions.cs (2)
28private IWebProxy? _proxy; 215public IWebProxy? Proxy
Internal\WebSocketsTransport.cs (1)
155var originalProxy = webSocket.Options.Proxy;
Microsoft.AspNetCore.SignalR.Client.Tests (6)
HttpConnectionFactoryTests.cs (1)
96{ $"{nameof(HttpConnectionOptions.Proxy)}", Mock.Of<IWebProxy>() },
HttpConnectionTests.cs (1)
98httpOptions.Proxy = Mock.Of<IWebProxy>();
HubConnectionBuilderExtensionsTests.cs (4)
62var proxy = Mock.Of<IWebProxy>(); 78var proxy = Mock.Of<IWebProxy>();
Microsoft.AspNetCore.SignalR.Tests (1)
WebSocketsTransportTests.cs (1)
38httpOptions.Proxy = Mock.Of<IWebProxy>();
netstandard (1)
netstandard.cs (1)
1161[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.IWebProxy))]
PresentationCore (5)
MS\Internal\IO\Packaging\ByteRangeDownloader.cs (2)
289internal IWebProxy Proxy 846private IWebProxy _proxy;
MS\Internal\IO\Packaging\PseudoWebRequest.cs (2)
243public override IWebProxy Proxy 375private IWebProxy _proxy;
System\IO\Packaging\PackWebRequest.cs (1)
356public override IWebProxy Proxy
System (1)
src\libraries\shims\System\ref\System.cs (1)
646[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.IWebProxy))]
System.Net.Http (3)
artifacts\obj\System.Net.Http\Debug\net10.0\System.Net.Http.notsupported.cs (3)
52public static System.Net.IWebProxy DefaultProxy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp); } } 143public System.Net.IWebProxy? Proxy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp); } } 449public System.Net.IWebProxy? Proxy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_NetHttp); } }
System.Net.Http.WinHttpHandler (1)
artifacts\obj\System.Net.Http.WinHttpHandler\Debug\net10.0\System.Net.Http.WinHttpHandler.notsupported.cs (1)
40public System.Net.IWebProxy? Proxy { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_WinHttpHandler); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_WinHttpHandler); } }
System.Net.Requests (10)
artifacts\obj\System.Net.Requests\Debug\net10.0\System.Net.Requests.notsupported.cs (10)
45public override System.Net.IWebProxy? Proxy { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } } 136public override System.Net.IWebProxy? Proxy { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } } 175public static System.Net.IWebProxy Select { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } } 176public static System.Net.IWebProxy GetEmptyWebProxy() { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } 216public override System.Net.IWebProxy? Proxy { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } } 366public static System.Net.IWebProxy? DefaultWebProxy { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } } 371public virtual System.Net.IWebProxy? Proxy { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } } 396public static System.Net.IWebProxy GetSystemWebProxy() { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } 508public static System.Net.ServicePoint FindServicePoint(string uriString, System.Net.IWebProxy? proxy) { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } 510public static System.Net.ServicePoint FindServicePoint(System.Uri address, System.Net.IWebProxy? proxy) { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); }
System.Net.WebClient (2)
System\Net\WebClient.cs (2)
39private IWebProxy? _proxy; 204public IWebProxy? Proxy
System.Net.WebSockets.Client (2)
System\Net\WebSockets\ClientWebSocketOptions.cs (2)
21private IWebProxy? _proxy; 110public IWebProxy? Proxy
System.Private.Xml (5)
System\Xml\XmlDownloadManager.cs (3)
13internal static Stream GetStream(Uri uri, ICredentials? credentials, IWebProxy? proxy) 27internal static Task<Stream> GetStreamAsync(Uri uri, ICredentials? credentials, IWebProxy? proxy) 40private static async Task<Stream> GetNonFileStreamAsync(Uri uri, ICredentials? credentials, IWebProxy? proxy)
System\Xml\XmlUrlResolver.cs (2)
17private IWebProxy? _proxy; 28public IWebProxy? Proxy