5 implementations of IsBypassed
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpEnvironmentProxy.cs (1)
298
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)
195
public bool
IsBypassed
(Uri host)
System.Net.WebSockets.Client (1)
System\Net\WebSockets\WebSocketHandle.Managed.cs (1)
539
public bool
IsBypassed
(Uri host) => throw new NotSupportedException();
2 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))