 |
ConneXionFindLienholdersByCriteria Method |
Finds the Lienholders by Criteria.
Namespace:
ConneXion
Assembly:
ConneXion (in ConneXion.dll) Version: 2020.0
Syntaxpublic ConneXionResult FindLienholdersByCriteria(
Lienholder oLienholder,
ref Lienholder[] oLienholders
)
Public Function FindLienholdersByCriteria (
oLienholder As Lienholder,
ByRef oLienholders As Lienholder()
) As ConneXionResult
Parameters
- oLienholder
- Type: ConneXionLienholder
Lienholder object to Find - oLienholders
- Type: ConneXionLienholder
List of Lienholders by Criteria
Return Value
Type:
ConneXionResultConneXionResult.
RemarksRequired 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 |
---|
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.
|
ExamplesDim 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