5 implementations of GetProxy
NuGet.Configuration (1)
Proxy\WebProxy.cs (1)
62
public Uri
GetProxy
(Uri destination) => ProxyAddress;
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpEnvironmentProxy.cs (1)
288
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)
270
public Uri?
GetProxy
(Uri destination)
8 references to GetProxy
NuGet.Protocol (2)
HttpSource\ProxyAuthenticationHandler.cs (1)
171
var proxyAddress = proxy.
GetProxy
(requestUri);
Plugins\RequestHandlers\GetCredentialsRequestHandler.cs (1)
260
var proxyUri = _proxy.
GetProxy
(sourceUri);
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\HttpConnectionPoolManager.cs (1)
401
proxyUri = _proxy.
GetProxy
(request.RequestUri);
System.Net.Http.WinHttpHandler (4)
System\Net\Http\WinHttpAuthHelper.cs (2)
159
state.Proxy?.
GetProxy
(state.RequestMessage.RequestUri),
194
proxyUri = state.Proxy.
GetProxy
(state.RequestMessage.RequestUri);
System\Net\Http\WinHttpHandler.cs (2)
793
state.Proxy.
GetProxy
(state.RequestMessage.RequestUri);
1295
Uri? proxyUri = state.Proxy.IsBypassed(uri) ? null : state.Proxy.
GetProxy
(uri);
System.Net.Requests (1)
System\Net\ServicePoint\ServicePointManager.cs (1)
176
Uri? proxyAddress = proxy.
GetProxy
(address);