![]() | |
ConneXionFindCertificatePropertysForHolder Method |
Namespace: ConneXion
public ConneXionResult FindCertificatePropertysForHolder( CertificateProperty CertificateProperty, string sUCode, 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" oResult = oConneXion.FindCertificatePropertysForHolder(oCert, "CITYCHI", oCerts) If oResult.Success = False Then txtCertificateProperty.Text = "FindCertificatePropertysForHolder is false. " & oResult.Description & oResult.TAMDescription Else txtCertificateProperty.Text = "FindCertificatePropertysForHolder is successful. " & oResult.Description & oResult.TAMDescription End If