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