GetAuthenticationAlgorithmTLS Example for C#
//LEADDICOMNet1 is a predefined LEADDicomNet object
private void TestGetAuthenticationAlgorithmTLS ( )
{
if (LEADDICOMNet1.GetAuthenticationAlgorithmTLS(LEADDICOMNet1.hNet,
(int)LTDNCLib.DicomCiphersuiteConstants.DICOM_TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA)
== (int)LTDNCLib.DicomMutualAuthMethod.DICOM_MUTUALAUTH_RSA)
MessageBox.Show("Mutual authentication in DICOM_TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
is DICOM_MUTUALAUTH_RSA");
}