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
17 references to HttpConnectionBase
System.Net.Http (17)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.cs (5)
856
private bool CheckExpirationOnGet(
HttpConnectionBase
connection)
869
private bool CheckExpirationOnReturn(
HttpConnectionBase
connection)
886
List<
HttpConnectionBase
>? toDispose = null;
954
List<
HttpConnectionBase
>? toDispose = null;
997
Task.Factory.StartNew(static s => ((List<
HttpConnectionBase
>)s!).ForEach(c => c.Dispose()), toDispose,
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http1.cs (2)
426
private static void ScavengeHttp11ConnectionStack(HttpConnectionPool pool, ConcurrentStack<HttpConnection> connections, ref List<
HttpConnectionBase
>? toDispose, long nowTicks, TimeSpan pooledConnectionLifetime, TimeSpan pooledConnectionIdleTimeout)
450
toDispose ??= new List<
HttpConnectionBase
>();
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http2.cs (2)
585
private static int ScavengeHttp2ConnectionList(List<Http2Connection> list, ref List<
HttpConnectionBase
>? toDispose, long nowTicks, TimeSpan pooledConnectionLifetime, TimeSpan pooledConnectionIdleTimeout)
599
toDispose ??= new List<
HttpConnectionBase
>();
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http3.cs (2)
559
private static int ScavengeHttp3ConnectionList(List<Http3Connection> list, ref List<
HttpConnectionBase
>? toDispose, long nowTicks, TimeSpan pooledConnectionLifetime, TimeSpan pooledConnectionIdleTimeout)
575
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)