System.Net.Security.SslConnectionInfo.SslConnectionInfo C# (CSharp) Method

SslConnectionInfo() public method

public SslConnectionInfo ( SecPkgContext_ConnectionInfo interopConnectionInfo )
interopConnectionInfo SecPkgContext_ConnectionInfo
        public SslConnectionInfo(SecPkgContext_ConnectionInfo interopConnectionInfo)
        {
            Protocol = interopConnectionInfo.Protocol;
            DataCipherAlg = interopConnectionInfo.DataCipherAlg;
            DataKeySize = interopConnectionInfo.DataKeySize;
            DataHashAlg = interopConnectionInfo.DataHashAlg;
            DataHashKeySize = interopConnectionInfo.DataHashKeySize;
            KeyExchangeAlg = interopConnectionInfo.KeyExchangeAlg;
            KeyExchKeySize = interopConnectionInfo.KeyExchKeySize;
        }
    }

Same methods

SslConnectionInfo::SslConnectionInfo ( SafeSslHandle sslContext ) : Microsoft.Win32.SafeHandles