2 writes to _connection
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (2)
96_connection = connection; 148_connection = null;
12 references to _connection
System.Net.Http (12)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (12)
138if (_connection != null) 145_connectionClosedTask ??= _connection.CloseAsync((long)Http3ErrorCode.NoError).AsTask(); 147QuicConnection connection = _connection; 213Debug.Assert(_connection is null || connection == _connection); 258QuicConnection? conn = _connection; 383if (_connection != null && _connectionClosedTask == null) 385_connectionClosedTask = _connection.CloseAsync((long)connectionResetErrorCode).AsTask(); 462Trace(0, _connection is not null ? $"{_connection} {message}" : message, memberName); 476_clientControl = await _connection!.OpenOutboundStreamAsync(QuicStreamType.Unidirectional).ConfigureAwait(false); 537streamTask = _connection!.AcceptInboundStreamAsync(CancellationToken.None);