IHierarchyGetDirectSubNodes Method |
Gets the direct sub-nodes of the specified node. To get root nodes, pass null for node.
Namespace:
Aloe.EnterpriseOne.Model.Core.Hierarchies
Assembly:
Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
SyntaxIEnumerable<IHierarchyNode> GetDirectSubNodes(
ObjectTransaction transaction,
IHierarchyNode node
)
Function GetDirectSubNodes (
transaction As ObjectTransaction,
node As IHierarchyNode
) As IEnumerable(Of IHierarchyNode)
IEnumerable<IHierarchyNode^>^ GetDirectSubNodes(
ObjectTransaction^ transaction,
IHierarchyNode^ node
)
abstract GetDirectSubNodes :
transaction : ObjectTransaction *
node : IHierarchyNode -> IEnumerable<IHierarchyNode>
Parameters
- transaction
- Type: Aloe.SystemFrameworks.DomainObjectTransaction
The transaction. - node
- Type: Aloe.EnterpriseOne.Model.Core.HierarchiesIHierarchyNode
The node for which to return the sub-nodes. Null represents the ultimate root node.
Return Value
Type:
IEnumerableIHierarchyNode
The sub-nodes of the specifed node.
See Also