2 writes to _maxHttp11Connections
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.cs (2)
81
_maxHttp11Connections
= Settings._maxConnectionsPerServer;
150
_maxHttp11Connections
= int.MaxValue;
5 references to _maxHttp11Connections
System.Net.Http (5)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http1.cs (4)
108
Debug.Assert(_associatedHttp11ConnectionCount <=
_maxHttp11Connections
,
109
$"Expected {_associatedHttp11ConnectionCount} <= {
_maxHttp11Connections
}");
228
_associatedHttp11ConnectionCount <
_maxHttp11Connections
&& // Under the connection limit
236
$"Max HTTP/1.1 connection limit: {
_maxHttp11Connections
}, " +
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http2.cs (1)
306
if (_associatedHttp11ConnectionCount <
_maxHttp11Connections
)