![]() | |
ConneXionFindCertificateProperty Method |
Namespace: ConneXion
public ConneXionResult FindCertificateProperty( ref CertificateProperty CertificateProperty )
Dim oConneXion As New ConneXion.ConneXion Dim oResult As New ConneXion.ConneXionResult Dim oCert As New ConneXion.CertificateProperty oCert.TAMUserName = "EXEC" oCert.TAMPassword = "PSWD" oCert.FixId = "99994" oCert.ClientID = "ABBOJO1" oResult = oConneXion.FindCertificateProperty(oCert) If oResult.Success = False Then txtCertificateProperty.Text = "FindCertificateProperty is false. " & oResult.Description & oResult.TAMDescription Else txtCertificateProperty.Text = "FindCertificateProperty is successful. " & oResult.Description & oResult.TAMDescription End If