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