2 instantiations of HttpConnectionSettings
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (1)
97var settings = new HttpConnectionSettings()
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (1)
21private readonly HttpConnectionSettings _settings = new HttpConnectionSettings();
14 references to HttpConnectionSettings
System.Net.Http (14)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.cs (1)
283public HttpConnectionSettings Settings => _poolManager.Settings;
System\Net\Http\SocketsHttpHandler\Http2StreamWindowManager.cs (1)
25HttpConnectionSettings settings = connection._pool.Settings;
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (3)
514public static byte[] BuildSettingsFrame(HttpConnectionSettings settings) 949private HttpConnectionSettings _settings; 954public WaitForHttp3ConnectionActivity(HttpConnectionSettings settings, HttpAuthority authority)
System\Net\Http\SocketsHttpHandler\HttpConnectionPoolManager.cs (3)
43private readonly HttpConnectionSettings _settings; 60public HttpConnectionPoolManager(HttpConnectionSettings settings) 227public HttpConnectionSettings Settings => _settings;
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (2)
89public HttpConnectionSettings CloneAndNormalize() 97var settings = new HttpConnectionSettings()
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (4)
21private readonly HttpConnectionSettings _settings = new HttpConnectionSettings(); 24private Func<HttpConnectionSettings, HttpMessageHandlerStage, HttpMessageHandlerStage>? _decompressionHandlerFactory; 28internal HttpConnectionSettings Settings => _settings; 521HttpConnectionSettings settings = _settings.CloneAndNormalize();