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)
197
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();
1 reference to IsBypassed
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\HttpConnectionPoolManager.cs (1)
386
if (!_proxy.
IsBypassed
(request.RequestUri))