1 write to _sslStream
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
27_sslStream = sslStream;
13 references to _sslStream
Microsoft.AspNetCore.Server.Kestrel.Core (13)
Internal\TlsConnectionFeature.cs (13)
37return _clientCert ??= ConvertToX509Certificate2(_sslStream.RemoteCertificate); 48public ReadOnlyMemory<byte> ApplicationProtocol => _sslStream.NegotiatedApplicationProtocol.Protocol; 50public SslProtocols Protocol => _sslStream.SslProtocol; 52public SslStream SslStream => _sslStream; 56public TlsCipherSuite? NegotiatedCipherSuite => _sslStream.NegotiatedCipherSuite; 59public CipherAlgorithmType CipherAlgorithm => _sslStream.CipherAlgorithm; 62public int CipherStrength => _sslStream.CipherStrength; 65public HashAlgorithmType HashAlgorithm => _sslStream.HashAlgorithm; 68public int HashStrength => _sslStream.HashStrength; 71public ExchangeAlgorithmType KeyExchangeAlgorithm => _sslStream.KeyExchangeAlgorithm; 74public int KeyExchangeStrength => _sslStream.KeyExchangeStrength; 87|| _sslStream.NegotiatedApplicationProtocol == SslApplicationProtocol.Http2) 100await _sslStream.NegotiateClientCertificateAsync(cancellationToken);