3 types derived from HttpConnectionBase
System.Net.Http (3)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (1)
19
internal sealed partial class Http2Connection :
HttpConnectionBase
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (1)
20
internal sealed class Http3Connection :
HttpConnectionBase
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (1)
18
internal sealed partial class HttpConnection :
HttpConnectionBase
18 references to HttpConnectionBase
System.Net.Http (18)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.cs (6)
831
where T :
HttpConnectionBase
?
880
private bool CheckExpirationOnGet(
HttpConnectionBase
connection)
893
private bool CheckExpirationOnReturn(
HttpConnectionBase
connection)
910
List<
HttpConnectionBase
>? toDispose = null;
978
List<
HttpConnectionBase
>? toDispose = null;
1021
Task.Factory.StartNew(static s => ((List<
HttpConnectionBase
>)s!).ForEach(c => c.Dispose()), toDispose,
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http1.cs (2)
425
private static void ScavengeHttp11ConnectionStack(HttpConnectionPool pool, ConcurrentStack<HttpConnection> connections, ref List<
HttpConnectionBase
>? toDispose, long nowTicks, TimeSpan pooledConnectionLifetime, TimeSpan pooledConnectionIdleTimeout)
449
toDispose ??= new List<
HttpConnectionBase
>();
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http2.cs (2)
584
private static int ScavengeHttp2ConnectionList(List<Http2Connection> list, ref List<
HttpConnectionBase
>? toDispose, long nowTicks, TimeSpan pooledConnectionLifetime, TimeSpan pooledConnectionIdleTimeout)
598
toDispose ??= new List<
HttpConnectionBase
>();
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http3.cs (2)
566
private static int ScavengeHttp3ConnectionList(List<Http3Connection> list, ref List<
HttpConnectionBase
>? toDispose, long nowTicks, TimeSpan pooledConnectionLifetime, TimeSpan pooledConnectionIdleTimeout)
582
toDispose ??= new List<
HttpConnectionBase
>();
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionWaiter.cs (1)
11
where T :
HttpConnectionBase
?
System\Net\Http\SocketsHttpHandler\ConnectionPool\RequestQueue.cs (1)
10
where T :
HttpConnectionBase
?
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (2)
1031
return
HttpConnectionBase
.ParseStatusCode(Encoding.ASCII.GetBytes(value));
1036
statusCode =
HttpConnectionBase
.ParseStatusCode(literalValue);
System\Net\Http\SocketsHttpHandler\HttpConnectionBase.cs (2)
203
task.ContinueWith(static (t, state) => LogFaulted((
HttpConnectionBase
)state!, t), this,
207
static void LogFaulted(
HttpConnectionBase
connection, Task task)