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
18 references to HttpConnectionBase
System.Net.Http (18)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.cs (6)
820where T : HttpConnectionBase? 869private bool CheckExpirationOnGet(HttpConnectionBase connection) 882private bool CheckExpirationOnReturn(HttpConnectionBase connection) 899List<HttpConnectionBase>? toDispose = null; 967List<HttpConnectionBase>? toDispose = null; 1010Task.Factory.StartNew(static s => ((List<HttpConnectionBase>)s!).ForEach(c => c.Dispose()), toDispose,
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http1.cs (2)
425private static void ScavengeHttp11ConnectionStack(HttpConnectionPool pool, ConcurrentStack<HttpConnection> connections, ref List<HttpConnectionBase>? toDispose, long nowTicks, TimeSpan pooledConnectionLifetime, TimeSpan pooledConnectionIdleTimeout) 449toDispose ??= new List<HttpConnectionBase>();
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http2.cs (2)
584private static int ScavengeHttp2ConnectionList(List<Http2Connection> list, ref List<HttpConnectionBase>? toDispose, long nowTicks, TimeSpan pooledConnectionLifetime, TimeSpan pooledConnectionIdleTimeout) 598toDispose ??= new List<HttpConnectionBase>();
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http3.cs (2)
560private static int ScavengeHttp3ConnectionList(List<Http3Connection> list, ref List<HttpConnectionBase>? toDispose, long nowTicks, TimeSpan pooledConnectionLifetime, TimeSpan pooledConnectionIdleTimeout) 576toDispose ??= 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)
1093return HttpConnectionBase.ParseStatusCode(Encoding.ASCII.GetBytes(value)); 1098statusCode = HttpConnectionBase.ParseStatusCode(literalValue);
System\Net\Http\SocketsHttpHandler\HttpConnectionBase.cs (2)
207task.ContinueWith(static (t, state) => LogFaulted((HttpConnectionBase)state!, t), this, 211static void LogFaulted(HttpConnectionBase connection, Task task)