1 write to _connection
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
Internal\QuicConnectionContext.cs (1)
42_connection = connection;
9 references to _connection
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (9)
Internal\QuicConnectionContext.cs (8)
60_closeTask ??= _connection.CloseAsync(errorCode: _context.Options.DefaultCloseErrorCode).AsTask(); 70await _connection.DisposeAsync(); 88_closeTask = _connection.CloseAsync(errorCode: resolvedErrorCode).AsTask(); 98var stream = await _connection.AcceptInboundStreamAsync(cancellationToken); 220quicStream = await _connection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional, cancellationToken); 224quicStream = await _connection.OpenOutboundStreamAsync(QuicStreamType.Unidirectional, cancellationToken); 229quicStream = await _connection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional, cancellationToken); 285return _connection;
Internal\QuicConnectionContext.FeatureCollection.cs (1)
28get { return _clientCert ??= ConvertToX509Certificate2(_connection.RemoteCertificate); }