Autodesk Vault ProfessionalVault API

GetCustomObjectsByIds Method

Autodesk.DataManagement.Client.Framework.Vault.Services.ConnectionICustomObjectManager

Loads multiple custom objects from the server at once

Syntax

System.Collections.Generic.IDictionary<long,CustomObject> GetCustomObjectsByIds(
   System.Collections.Generic.IEnumerable<long> coIds
)
Function GetCustomObjectsByIds( _
   ByVal coIds As System.Collections.Generic.IEnumerable(Of Long) _
) As System.Collections.Generic.IDictionary(Of Long,CustomObject)

Parameters

NameDescription
coIdsA list of custom object Id's (Autodesk.DataManagement.Client.Framework.Vault.Currency.Entities.ChangeOrder.EntityMasterId) to retrieve

Return Value

A dictionary of Custom Objects where the Key is the Custom Object Id and the Value is the Custom Object

Remarks

If a large number of Custom Objects Id's are specified, they will be broken up into multiple server calls in order to manage the load on the server.

See Also