3 types derived from HttpConnectionBase
System.Net.Http (3)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (1)
20internal sealed partial class Http2Connection : HttpConnectionBase
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (1)
21internal sealed class Http3Connection : HttpConnectionBase
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (1)
18internal sealed partial class HttpConnection : HttpConnectionBase
19 references to HttpConnectionBase
System.Net.Http (19)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.cs (7)
584long connectionId = HttpConnectionBase.GetNextConnectionId(); 844where T : HttpConnectionBase? 902private bool CheckExpirationOnGet(HttpConnectionBase connection) 920private bool CheckExpirationOnReturn(HttpConnectionBase connection) 1019List<HttpConnectionBase>? toDispose = null; 1096List<HttpConnectionBase>? toDispose = null; 1141Task.Factory.StartNew(static s => ((List<HttpConnectionBase>)s!).ForEach(c => c.Dispose()), toDispose,
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http1.cs (2)
430private static void ScavengeHttp11ConnectionStack(HttpConnectionPool pool, ConcurrentStack<HttpConnection> connections, ref List<HttpConnectionBase>? toDispose, long nowTicks, TimeSpan pooledConnectionLifetime, TimeSpan pooledConnectionIdleTimeout) 454toDispose ??= new List<HttpConnectionBase>();
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http2.cs (2)
656private static int ScavengeHttp2ConnectionList(List<Http2Connection> list, ref List<HttpConnectionBase>? toDispose, long nowTicks, TimeSpan pooledConnectionLifetime, TimeSpan pooledConnectionIdleTimeout) 670toDispose ??= new List<HttpConnectionBase>();
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http3.cs (2)
561private static int ScavengeHttp3ConnectionList(List<Http3Connection> list, ref List<HttpConnectionBase>? toDispose, long nowTicks, TimeSpan pooledConnectionLifetime, TimeSpan pooledConnectionIdleTimeout) 577toDispose ??= new List<HttpConnectionBase>();
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionWaiter.cs (1)
11where T : HttpConnectionBase?
System\Net\Http\SocketsHttpHandler\ConnectionPool\RequestQueue.cs (1)
10where T : HttpConnectionBase?
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (2)
1086return HttpConnectionBase.ParseStatusCode(Encoding.ASCII.GetBytes(value)); 1091statusCode = HttpConnectionBase.ParseStatusCode(literalValue);
System\Net\Http\SocketsHttpHandler\HttpConnectionBase.cs (2)
324task.ContinueWith(static (t, state) => LogFaulted((HttpConnectionBase)state!, t), this, 328static void LogFaulted(HttpConnectionBase connection, Task task)