FindCustomEntitiesBySearchConditions Method
Returns a set of custom entities that match a given search criteria.
Required Permissions
CustomEntityReadSyntax
public CustEnt[] FindCustomEntitiesBySearchConditions(
SrchCond[] searchConditions,
SrchSort[] sortConditions,
ref System.string bookmark,
out SrchStatus searchstatus
)Public Function FindCustomEntitiesBySearchConditions( _
ByVal searchConditions() As SrchCond, _
ByVal sortConditions() As SrchSort, _
ByRef bookmark As System.String, _
ByRef searchstatus As SrchStatus _
) As CustEnt()Parameters
| Name | Description |
|---|---|
| searchConditions | The search parameters. |
| sortConditions | The properties to sort on. The first value in the array is the primary sort, the second value is the secondary sort, etc. |
| bookmark | [in/out] Used to continue a search if the results are too large for a single call. Pass in null for the first call of the search. Pass in the returned bookmark string for subsequent calls on that search. |
| searchstatus | [out] Returns status information about the search. |
Return Value
A list of the objects that match the search criteria.