1 write to _sslStream
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
26_sslStream = sslStream;
13 references to _sslStream
Microsoft.AspNetCore.Server.Kestrel.Core (13)
Internal\TlsConnectionFeature.cs (13)
36return _clientCert ??= ConvertToX509Certificate2(_sslStream.RemoteCertificate); 47public ReadOnlyMemory<byte> ApplicationProtocol => _sslStream.NegotiatedApplicationProtocol.Protocol; 49public SslProtocols Protocol => _sslStream.SslProtocol; 51public SslStream SslStream => _sslStream; 55public TlsCipherSuite? NegotiatedCipherSuite => _sslStream.NegotiatedCipherSuite; 57public CipherAlgorithmType CipherAlgorithm => _sslStream.CipherAlgorithm; 59public int CipherStrength => _sslStream.CipherStrength; 61public HashAlgorithmType HashAlgorithm => _sslStream.HashAlgorithm; 63public int HashStrength => _sslStream.HashStrength; 65public ExchangeAlgorithmType KeyExchangeAlgorithm => _sslStream.KeyExchangeAlgorithm; 67public int KeyExchangeStrength => _sslStream.KeyExchangeStrength; 80|| _sslStream.NegotiatedApplicationProtocol == SslApplicationProtocol.Http2) 93await _sslStream.NegotiateClientCertificateAsync(cancellationToken);