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