5 implementations of GetProxy
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpEnvironmentProxy.cs (1)
290public Uri? GetProxy(Uri uri)
System\Net\Http\SocketsHttpHandler\HttpNoProxy.cs (1)
9public Uri? GetProxy(Uri destination) => null;
System.Net.Requests (1)
System\Net\GlobalProxySelection.cs (1)
27public Uri GetProxy(Uri uri) => uri;
System.Net.WebProxy (1)
System\Net\WebProxy.cs (1)
101public Uri? GetProxy(Uri destination)
System.Net.WebSockets.Client (1)
System\Net\WebSockets\WebSocketHandle.Managed.cs (1)
538public Uri? GetProxy(Uri destination) => throw new NotSupportedException();
2 references to GetProxy
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\HttpConnectionPoolManager.cs (1)
399proxyUri = _proxy.GetProxy(request.RequestUri);
System.Net.Requests (1)
System\Net\ServicePoint\ServicePointManager.cs (1)
176Uri? proxyAddress = proxy.GetProxy(address);