Click or drag to resize

HierarchyGetDirectSubNodes Method

Gets the direct sub-nodes of the specified node.

Namespace:  Aloe.EnterpriseOne.Model.Core.Hierarchies
Assembly:  Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntax
public abstract IEnumerable<IHierarchyNode> GetDirectSubNodes(
	ObjectTransaction transaction,
	IHierarchyNode node
)

Parameters

transaction
Type: Aloe.SystemFrameworks.DomainObjectTransaction
The transaction.
node
Type: Aloe.EnterpriseOne.Model.Core.HierarchiesIHierarchyNode
The node for which to return the sub-nodes.

Return Value

Type: IEnumerableIHierarchyNode
The sub-nodes of the specifed node.

Implements

IHierarchyGetDirectSubNodes(ObjectTransaction, IHierarchyNode)
Remarks
The direct sub-nodes of a node are the nodes, that have ParentNode equal to the node. Direct sub-nodes does not include the node itself.
See Also