4 writes to _associatedHttp11ConnectionCount
System.Net.Http (4)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http1.cs (3)
242_associatedHttp11ConnectionCount++; 320_associatedHttp11ConnectionCount--; 420_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)
963if (!_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}"); 228_associatedHttp11ConnectionCount < _maxHttp11Connections && // Under the connection limit 235$"Pending HTTP/1.1 connections: {_pendingHttp11ConnectionCount}, Total associated HTTP/1.1 connections: {_associatedHttp11ConnectionCount}, " + 317Debug.Assert(_associatedHttp11ConnectionCount > 0); 417Debug.Assert(_associatedHttp11ConnectionCount > 0); 437Debug.Assert(connections.Count <= pool._associatedHttp11ConnectionCount); 439HttpConnection[] stackCopy = ArrayPool<HttpConnection>.Shared.Rent(pool._associatedHttp11ConnectionCount);
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http2.cs (1)
306if (_associatedHttp11ConnectionCount < _maxHttp11Connections)