_3PA.Lib.Ftp.SslInfo.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return SslProtocol + ", " +
                   CipherAlgorithm + " (" + _cipherStrength + " bit), " +
                   KeyExchangeAlgorithm + " (" + _keyExchangeStrength + " bit), " +
                   HashAlgorithm + " (" + _hashStrength + " bit)";
        }
SslInfo