2 writes to _connection
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (2)
99
_connection
= connection;
151
_connection
= null;
12 references to _connection
System.Net.Http (12)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (12)
141
if (
_connection
!= null)
148
_connectionClosedTask ??=
_connection
.CloseAsync((long)Http3ErrorCode.NoError).AsTask();
150
QuicConnection connection =
_connection
;
226
Debug.Assert(
_connection
is null || connection ==
_connection
);
279
QuicConnection? conn =
_connection
;
399
if (
_connection
!= null && _connectionClosedTask == null)
401
_connectionClosedTask =
_connection
.CloseAsync((long)connectionResetErrorCode).AsTask();
478
Trace(0,
_connection
is not null ? $"{
_connection
} {message}" : message, memberName);
492
_clientControl = await
_connection
!.OpenOutboundStreamAsync(QuicStreamType.Unidirectional).ConfigureAwait(false);
553
streamTask =
_connection
!.AcceptInboundStreamAsync(CancellationToken.None);