SslStream::SslProtocol Property
.NET Framework (current version)
Gets a value that indicates the security protocol used to authenticate this connection.
Assembly: System (in System.dll)
Property Value
Type: System.Security.Authentication::SslProtocolsThe SslProtocols value that represents the protocol used for authentication.
The following example displays the security properties of the specified stream.
static void DisplaySecurityLevel( SslStream^ stream ) { Console::WriteLine( L"Cipher: {0} strength {1}", stream->CipherAlgorithm, stream->CipherStrength ); Console::WriteLine( L"Hash: {0} strength {1}", stream->HashAlgorithm, stream->HashStrength ); Console::WriteLine( L"Key exchange: {0} strength {1}", stream->KeyExchangeAlgorithm, stream->KeyExchangeStrength ); Console::WriteLine( L"Protocol: {0}", stream->SslProtocol ); }
.NET Framework
Available since 2.0
Available since 2.0
Show: