Click or drag to resize

ConneXionFindCertificatePropertysForCustomer Method

Finds the property certificates for the specified customer.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult FindCertificatePropertysForCustomer(
	CertificateProperty CertificateProperty,
	ref CertificateProperty[] CertificatePropertys
)

Parameters

CertificateProperty
Type: ConneXionCertificateProperty
CertificateProperty object to Find.
CertificatePropertys
Type: ConneXionCertificateProperty
List of Certificate Properties.

Return Value

Type: ConneXionResult
ConneXionResult.
Remarks

Required Fields

  • TAMUserName
  • TAMPassword
  • TAMCentralAgency - only if agency is on AppliedOnline
  • LicenseKey - only if agency is an Agency of Vendor
  • ClientID
Examples
VB
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
See Also