Autodesk Vault ProfessionalVault API

FindItemRevisionsBySearchConditions Method

Autodesk.Connectivity.WebServicesItemService

Gets a set of Item revisions based on a property search.

Required Permissions

ItemRead

Syntax

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

NameDescription
searchConditionsA set of search criteria. If this parameter is null, all Items will be returned.
sortConditionsThe properties to sort on. The first value in the array is the primary sort, the second value is the secondary sort, etc.
bRequestLatestOnlyIf 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.

See Also