GetBrowseChildren Method
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
| Name | Description |
|---|---|
| vltConn | A connection to a vault server |
| entity | The entity to retrieve children for |
| showHidden | Whether to include hidden children in the returned results. |
Return Value
A list of children of entity