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