FindItemRevisionsBySearchConditions Method
Gets a set of Item revisions based on a property search.
Required Permissions
ItemReadSyntax
public Item[] FindItemRevisionsBySearchConditions(
SrchCond[] searchConditions,
SrchSort[] sortConditions,
System.bool bRequestLatestOnly,
ref System.string bookmark,
out SrchStatus searchstatus
)Public Function FindItemRevisionsBySearchConditions( _
ByVal searchConditions() As SrchCond, _
ByVal sortConditions() As SrchSort, _
ByVal bRequestLatestOnly As System.Boolean, _
ByRef bookmark As System.String, _
ByRef searchstatus As SrchStatus _
) As Item()Parameters
| Name | Description |
|---|---|
| searchConditions | A set of search criteria. If this parameter is null, all Items will be returned. |
| sortConditions | The properties to sort on. The first value in the array is the primary sort, the second value is the secondary sort, etc. |
| bRequestLatestOnly | If true, only the latest revision will be returned. If false, all matching revisions will be returned. |
| 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
An array of all matching Item revisions or null if there were no matches.