10 references to SocketsHttpHandler
System.Net.Http (10)
System\Net\Http\HttpHandlerDefaults.cs (1)
13
public static readonly int DefaultMaxConnectionsPerServer = GlobalHttpSettings.
SocketsHttpHandler
.MaxConnectionsPerServer;
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionWaiter.cs (1)
80
int timeout = GlobalHttpSettings.
SocketsHttpHandler
.PendingConnectionTimeoutOnRequestCompletion;
System\Net\Http\SocketsHttpHandler\Http2StreamWindowManager.cs (4)
15
private static double WindowScaleThresholdMultiplier => GlobalHttpSettings.
SocketsHttpHandler
.Http2StreamWindowScaleThresholdMultiplier;
16
private static int MaxStreamWindowSize => GlobalHttpSettings.
SocketsHttpHandler
.MaxHttp2StreamWindowSize;
17
private static bool WindowScalingEnabled => !GlobalHttpSettings.
SocketsHttpHandler
.DisableDynamicHttp2WindowSizing;
184
e._state = GlobalHttpSettings.
SocketsHttpHandler
.DisableDynamicHttp2WindowSizing ? State.Disabled : State.Init;
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (2)
78
bool allowHttp2 = GlobalHttpSettings.
SocketsHttpHandler
.AllowHttp2;
79
bool allowHttp3 = GlobalHttpSettings.
SocketsHttpHandler
.AllowHttp3;
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (2)
282
if (value < HttpHandlerDefaults.DefaultInitialHttp2StreamWindowSize || value > GlobalHttpSettings.
SocketsHttpHandler
.MaxHttp2StreamWindowSize)
287
GlobalHttpSettings.
SocketsHttpHandler
.MaxHttp2StreamWindowSize);