GetChangeOrdersByIds Method
Loads multiple change orders from the server at once
Syntax
System.Collections.Generic.IDictionary<long,ChangeOrder> GetChangeOrdersByIds(
System.Collections.Generic.IEnumerable<long> coIds
)Function GetChangeOrdersByIds( _
ByVal coIds As System.Collections.Generic.IEnumerable(Of Long) _
) As System.Collections.Generic.IDictionary(Of Long,ChangeOrder)Parameters
| Name | Description |
|---|---|
| coIds | A list of Change Order Id's (Autodesk.DataManagement.Client.Framework.Vault.Currency.Entities.ChangeOrder.EntityMasterId) to retrieve |
Return Value
A dictionary of Change Orders where the Key is the Change Order Id and the Value is the Change Order
Remarks
If a large number of Change Orders Id's are specified, they will be broken up into multiple server calls in order to manage the load on the server.