Click or drag to resize

ConneXionFindClaimant Method

Used to Find the claimant.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult FindClaimant(
	ref Claimant Claimant
)

Parameters

Claimant
Type: ConneXionClaimant
Claimant 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
  • ClaimRec
  • RecordNumber
Examples
VB
Dim oConneXionClaimant As New ConneXion.ConneXion
Dim oClaimant As New ConneXion.Claimant
Dim oResult As ConneXion.ConneXionResult

oClaimant.TAMUserName = "EXEC"
oClaimant.TAMPassword = "PSWD"
oClaimant.ClaimRec = "000030"
oClaimant.RecordNumber = "22"

oResult = oConneXionClaimant.FindClaimant(oClaimant)
If oResult.Success Then
    MessageBox.Show("Find Claimant is successful")
    txtResult.Text = oResult.Description
Else
    txtResult.Text = "Number: " & oResult.Number & vbCrLf & "Desc: " &
     oResult.Description & vbCrLf & "TAMErrorNumber: " & oResult.TAMErrorNumber & vbCrLf & "TAMErroDesc: " & oResult.TAMDescription
End If
See Also