2 writes to _connection
System.Net.Http (2)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (2)
97_connection = connection; 149_connection = null;
12 references to _connection
System.Net.Http (12)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (12)
139if (_connection != null) 146_connectionClosedTask ??= _connection.CloseAsync((long)Http3ErrorCode.NoError).AsTask(); 148QuicConnection connection = _connection; 224Debug.Assert(_connection is null || connection == _connection); 275QuicConnection? conn = _connection; 395if (_connection != null && _connectionClosedTask == null) 397_connectionClosedTask = _connection.CloseAsync((long)connectionResetErrorCode).AsTask(); 474Trace(0, _connection is not null ? $"{_connection} {message}" : message, memberName); 488_clientControl = await _connection!.OpenOutboundStreamAsync(QuicStreamType.Unidirectional).ConfigureAwait(false); 549streamTask = _connection!.AcceptInboundStreamAsync(CancellationToken.None);