Autodesk Vault ProfessionalVault API

GetBrowseChildren Method

Autodesk.DataManagement.Client.Framework.Vault.Services.ConnectionIEntityOperationManager

Gets all of the children for a specific entity for a browse workflow.

Syntax

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

Parameters

NameDescription
entityThe entity to retrieve children for.
showHiddenWhether to include hidden entities in the results.

Return Value

A list of children for the specified entity.

Remarks

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.

See Also