1 write to _connectionInfo
System.Net.Security (1)
System\Net\Security\SslStream.Protocol.cs (1)
990SslStreamPal.QueryContextConnectionInfo(_securityContext!, ref _connectionInfo);
12 references to _connectionInfo
System.Net.Security (12)
System\Net\Security\SslStream.cs (11)
493if (_connectionInfo.Protocol == 0) 498SslProtocols proto = (SslProtocols)_connectionInfo.Protocol; 569return _connectionInfo.ApplicationProtocol != null ? new SslApplicationProtocol(_connectionInfo.ApplicationProtocol, false) : default; 579return _connectionInfo.TlsCipherSuite; 589return (CipherAlgorithmType)_connectionInfo.DataCipherAlg; 599return _connectionInfo.DataKeySize; 609return (HashAlgorithmType)_connectionInfo.DataHashAlg; 619return _connectionInfo.DataHashKeySize; 629return (ExchangeAlgorithmType)_connectionInfo.KeyExchangeAlg; 639return _connectionInfo.KeyExchKeySize;
System\Net\Security\SslStream.Protocol.cs (1)
996NetEventSource.Info(this, $"TLS resumed {_connectionInfo.TlsResumed}");