5 implementations of IsBypassed
NuGet.Configuration (1)
Proxy\WebProxy.cs (1)
64public bool IsBypassed(Uri uri)
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpEnvironmentProxy.cs (1)
296public bool IsBypassed(Uri uri)
System\Net\Http\SocketsHttpHandler\HttpNoProxy.cs (1)
10public bool IsBypassed(Uri host) => true;
System.Net.Requests (1)
System\Net\GlobalProxySelection.cs (1)
29public bool IsBypassed(Uri uri) => true; // no proxy, always bypasses
System.Net.WebProxy (1)
System\Net\WebProxy.cs (1)
404public bool IsBypassed(Uri host)
3 references to IsBypassed
System.Net.Http (2)
System\Net\Http\DiagnosticsHelper.cs (1)
45if ((proxy is null || proxy.IsBypassed(request.RequestUri)) && request.HasHeaders && request.Headers.Host is string hostHeader)
System\Net\Http\SocketsHttpHandler\HttpConnectionPoolManager.cs (1)
388if (!_proxy.IsBypassed(request.RequestUri))
System.Net.Http.WinHttpHandler (1)
System\Net\Http\WinHttpHandler.cs (1)
1295Uri? proxyUri = state.Proxy.IsBypassed(uri) ? null : state.Proxy.GetProxy(uri);