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