4 writes to _associatedHttp11ConnectionCount
System.Net.Http (4)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http1.cs (3)
207_associatedHttp11ConnectionCount++; 285_associatedHttp11ConnectionCount--; 385_associatedHttp11ConnectionCount--;
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http2.cs (1)
308_associatedHttp11ConnectionCount++;
14 references to _associatedHttp11ConnectionCount
System.Net.Http (14)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.cs (1)
939if (!_usedSinceLastCleanup && _associatedHttp11ConnectionCount == 0 && _associatedHttp2ConnectionCount == 0)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http1.cs (12)
105Debug.Assert(_associatedHttp11ConnectionCount >= connectionCount + _pendingHttp11ConnectionCount, 106$"Expected {_associatedHttp11ConnectionCount} >= {connectionCount} + {_pendingHttp11ConnectionCount}"); 108Debug.Assert(_associatedHttp11ConnectionCount <= _maxHttp11Connections, 109$"Expected {_associatedHttp11ConnectionCount} <= {_maxHttp11Connections}"); 110Debug.Assert(_associatedHttp11ConnectionCount >= _pendingHttp11ConnectionCount, 111$"Expected {_associatedHttp11ConnectionCount} >= {_pendingHttp11ConnectionCount}"); 193_associatedHttp11ConnectionCount < _maxHttp11Connections && // Under the connection limit 200$"Pending HTTP/1.1 connections: {_pendingHttp11ConnectionCount}, Total associated HTTP/1.1 connections: {_associatedHttp11ConnectionCount}, " + 282Debug.Assert(_associatedHttp11ConnectionCount > 0); 382Debug.Assert(_associatedHttp11ConnectionCount > 0); 402Debug.Assert(connections.Count <= pool._associatedHttp11ConnectionCount); 404HttpConnection[] stackCopy = ArrayPool<HttpConnection>.Shared.Rent(pool._associatedHttp11ConnectionCount);
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http2.cs (1)
306if (_associatedHttp11ConnectionCount < _maxHttp11Connections)