Click or drag to resize

ConneXionFindCertificateProperty Method

Finds the property certificate.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult FindCertificateProperty(
	ref CertificateProperty CertificateProperty
)

Parameters

CertificateProperty
Type: ConneXionCertificateProperty
CertificateProperty object to Find

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
  • FixId
Examples
VB
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
See Also