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)
141if (_connection != null) 148_connectionClosedTask ??= _connection.CloseAsync((long)Http3ErrorCode.NoError).AsTask(); 150QuicConnection connection = _connection; 226Debug.Assert(_connection is null || connection == _connection); 279QuicConnection? conn = _connection; 399if (_connection != null && _connectionClosedTask == null) 401_connectionClosedTask = _connection.CloseAsync((long)connectionResetErrorCode).AsTask(); 478Trace(0, _connection is not null ? $"{_connection} {message}" : message, memberName); 492_clientControl = await _connection!.OpenOutboundStreamAsync(QuicStreamType.Unidirectional).ConfigureAwait(false); 553streamTask = _connection!.AcceptInboundStreamAsync(CancellationToken.None);