Autodesk Vault ProfessionalVault API

GetBrowseChildren Method

Autodesk.DataManagement.Client.Framework.Vault.InterfacesIEntityOperationProvider

Gets all of the children for a specific entity for a browse workflow. A Browse Vault workflow is one where the user is presented with a list of entities, and they double click on the entity to drill down to it's children. A folder would return a list of child folders, files and links. An Assembly file may return a list of all parts for that assembly.

Syntax

System.Collections.Generic.IEnumerable<IEntity> GetBrowseChildren(
   Connection vltConn,
   IEntity entity,
   System.bool showHidden
)
Function GetBrowseChildren( _
   ByVal vltConn As Connection, _
   ByVal entity As IEntity, _
   Optional ByVal showHidden As System.Boolean _
) As System.Collections.Generic.IEnumerable(Of IEntity)

Parameters

NameDescription
vltConnA connection to a vault server
entityThe entity to retrieve children for
showHiddenWhether to include hidden children in the returned results.

Return Value

A list of children of entity

See Also