14 references to _http11Connections
System.Net.Http (14)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.cs (4)
312Debug.Assert(!Monitor.IsEntered(_http11Connections)); 313return _http11Connections; 317public bool HasSyncObjLock => Monitor.IsEntered(_http11Connections); 973ScavengeHttp11ConnectionStack(this, _http11Connections, ref toDispose, nowTicks, pooledConnectionLifetime, pooledConnectionIdleTimeout);
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http1.cs (10)
37while (_http11Connections.TryPop(out connection)) 83/// <br/>- After adding a request to the queue if we fail to obtain a connection from <see cref="_http11Connections"/>. 86/// The <paramref name="connection"/> can either be provided as an argument (when returning a connection to the pool), or one will be rented from <see cref="_http11Connections"/>. 104int connectionCount = _http11Connections.Count; 115if (connection is not null || _http11Connections.TryPop(out connection)) 161_http11Connections.Push(connection); 212while (_http11Connections.TryPop(out connection)) 233Trace($"Available HTTP/1.1 connections: {_http11Connections.Count}, Requests in the queue: {_http11RequestQueue.Count}, " + 379_http11Connections.Push(connection); 418Debug.Assert(!disposing || Array.IndexOf(_http11Connections.ToArray(), connection) < 0);