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