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();
11 references to HttpConnectionSettings
System.Net.Http (11)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.cs (1)
298public HttpConnectionSettings Settings => _poolManager.Settings;
System\Net\Http\SocketsHttpHandler\Http2StreamWindowManager.cs (1)
25HttpConnectionSettings settings = connection._pool.Settings;
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (1)
494public static byte[] BuildSettingsFrame(HttpConnectionSettings settings)
System\Net\Http\SocketsHttpHandler\HttpConnectionPoolManager.cs (3)
43private readonly HttpConnectionSettings _settings; 60public HttpConnectionPoolManager(HttpConnectionSettings settings) 224public HttpConnectionSettings Settings => _settings;
System\Net\Http\SocketsHttpHandler\HttpConnectionSettings.cs (2)
89public HttpConnectionSettings CloneAndNormalize() 97var settings = new HttpConnectionSettings()
System\Net\Http\SocketsHttpHandler\SocketsHttpHandler.cs (3)
21private readonly HttpConnectionSettings _settings = new HttpConnectionSettings(); 23private Func<HttpConnectionSettings, HttpMessageHandlerStage, HttpMessageHandlerStage>? _decompressionHandlerFactory; 517HttpConnectionSettings settings = _settings.CloneAndNormalize();