Click or drag to resize

ConneXionUpdateCertificateProperty Method

Updates the property certificate.

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

Parameters

CertificateProperty
Type: ConneXionCertificateProperty
CertificateProperty object to Update

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

  oCert.TAMUserName = "EXEC"
  oCert.TAMPassword = "PSWD"
  oCert.FixId = "99994"
  oCert.ClientID = "ABBOJO1"
  oCert.CompanyLetterA = "CIN"


  oResult = oConneXion.UpdateCertificateProperty(oCert)

  If oResult.Success = False Then
    txtCertificateProperty.Text = "UpdateCertificateProperty is false. " & oResult.Description & oResult.TAMDescription
  Else
    txtCertificateProperty.Text = "UpdateCertificateProperty is successful. " & oResult.Description & oResult.TAMDescription
  End If
End If
See Also