14 references to GlobalHttpSettings
System.Net.Http (14)
System\Net\Http\DiagnosticsHandler.cs (1)
74
internal static bool IsGloballyEnabled() =>
GlobalHttpSettings
.DiagnosticsHandler.EnableActivityPropagation;
System\Net\Http\DiagnosticsHelper.cs (1)
25
if (
GlobalHttpSettings
.DiagnosticsHandler.DisableUriRedaction)
System\Net\Http\HttpHandlerDefaults.cs (1)
13
public static readonly int DefaultMaxConnectionsPerServer =
GlobalHttpSettings
.SocketsHttpHandler.MaxConnectionsPerServer;
System\Net\Http\HttpTelemetry.cs (2)
41
if (!
GlobalHttpSettings
.DiagnosticsHandler.DisableUriRedaction)
190
if (!
GlobalHttpSettings
.DiagnosticsHandler.DisableUriRedaction)
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);