Autodesk Vault ProfessionalVault API

FindChangeOrdersBySearchConditions Method

Autodesk.Connectivity.WebServicesChangeOrderService

Find change orders based on a set of property search conditions.

Required Permissions

ChangeOrderRead

Syntax

public ChangeOrder[] FindChangeOrdersBySearchConditions(
   SrchCond[] searchConditions,
   SrchSort[] sortConditions,
   ref System.string bookmark,
   out SrchStatus searchstatus
)
Public Function FindChangeOrdersBySearchConditions( _
   ByVal searchConditions() As SrchCond, _
   ByVal sortConditions() As SrchSort, _
   ByRef bookmark As System.String, _
   ByRef searchstatus As SrchStatus _
) As ChangeOrder()

Parameters

NameDescription
searchConditionsArray of property search conditions. If this value is null, all change orders 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.
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 change orders or null if there were no matches.

See Also