Click or drag to resize

ConneXionFindLienholdersByCriteria Method

Finds the Lienholders by Criteria.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult FindLienholdersByCriteria(
	Lienholder oLienholder,
	ref Lienholder[] oLienholders
)

Parameters

oLienholder
Type: ConneXionLienholder
Lienholder object to Find
oLienholders
Type: ConneXionLienholder
List of Lienholders by Criteria

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

Available Search Criteria

  • Attention
  • City
  • Fax
  • MaxCount
  • Name
  • Note
  • Phone
  • RecordNumber
  • State
  • Street
  • Street2
  • Tag
  • ZipCode
Note Note
MaxCount: This field limits the number of records returned when calling FindLienholdersByCriteria to avoid time out issues. Once MaxCount is set, additional code can be added to see if there are additional records to be returned and loop thru those records.
Examples
VB
Dim oConneXion As New ConneXion.ConneXion
Dim oResult As New ConneXion.ConneXionResult
Dim oLienholder As New ConneXion.Lienholder
Dim oLienholders() As ConneXion.Lienholder

oLienholder.TAMUserName = "EXEC"
oLienholder.TAMPassword = "PSWD"
oLienholder.State = "IL"

oResult = oConneXion.FindLienholdersByCriteria(oLienholder, oLienholders)

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