Click or drag to resize

ConneXionFindLienholder Method

Finds the Lienholder.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult FindLienholder(
	ref Lienholder oLienholder
)

Parameters

oLienholder
Type: ConneXionLienholder
Lienholder 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
  • EntityID
Examples
VB
Dim oConneXion As New ConneXion.ConneXion
Dim oResult As New ConneXion.ConneXionResult
Dim oLienholder As New ConneXion.Lienholder

oLienholder.TAMUserName = "EXEC"
oLienholder.TAMPassword = "PSWD"
oLienholder.EntityID = "ARCMAT1"

oResult = oConneXion.FindLienholder(oLienholder)

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