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(); 97var stream = await _connection.AcceptInboundStreamAsync(cancellationToken); 219quicStream = await _connection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional, cancellationToken); 223quicStream = await _connection.OpenOutboundStreamAsync(QuicStreamType.Unidirectional, cancellationToken); 228quicStream = await _connection.OpenOutboundStreamAsync(QuicStreamType.Bidirectional, cancellationToken); 284return _connection;
Internal\QuicConnectionContext.FeatureCollection.cs (1)
28get { return _clientCert ??= ConvertToX509Certificate2(_connection.RemoteCertificate); }