Click or drag to resize

ConneXionFindCertificatePropertysForHolder Method

Finds the property certificates for the specified holder.

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

Parameters

CertificateProperty
Type: ConneXionCertificateProperty
CertificateProperty object to Find
sUCode
Type: SystemString
Certificate Holder Code
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
  • Certificate Holder Code
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"

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
See Also