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)
134if (_connection != null) 141_connectionClosedTask ??= _connection.CloseAsync((long)Http3ErrorCode.NoError).AsTask(); 143QuicConnection connection = _connection; 209Debug.Assert(_connection is null || connection == _connection); 254QuicConnection? conn = _connection; 377if (_connection != null && _connectionClosedTask == null) 379_connectionClosedTask = _connection.CloseAsync((long)connectionResetErrorCode).AsTask(); 454Trace(0, _connection is not null ? $"{_connection} {message}" : message, memberName); 468_clientControl = await _connection!.OpenOutboundStreamAsync(QuicStreamType.Unidirectional).ConfigureAwait(false); 529streamTask = _connection!.AcceptInboundStreamAsync(CancellationToken.None);