2 writes to _connection
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (2)
96
_connection
= connection;
144
_connection
= null;
12 references to _connection
System.Net.Http (12)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (12)
134
if (
_connection
!= null)
141
_connectionClosedTask ??=
_connection
.CloseAsync((long)Http3ErrorCode.NoError).AsTask();
143
QuicConnection connection =
_connection
;
209
Debug.Assert(
_connection
is null || connection ==
_connection
);
254
QuicConnection? conn =
_connection
;
377
if (
_connection
!= null && _connectionClosedTask == null)
379
_connectionClosedTask =
_connection
.CloseAsync((long)connectionResetErrorCode).AsTask();
454
Trace(0,
_connection
is not null ? $"{
_connection
} {message}" : message, memberName);
468
_clientControl = await
_connection
!.OpenOutboundStreamAsync(QuicStreamType.Unidirectional).ConfigureAwait(false);
529
streamTask =
_connection
!.AcceptInboundStreamAsync(CancellationToken.None);