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