IHierarchyNodeProviderExtensionsGetSubNodesTEntity Method |
Gets the sub nodes.
Namespace:
Aloe.EnterpriseOne.Model.Core.Hierarchies.Extensions
Assembly:
Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntaxpublic static IEnumerable<TEntity> GetSubNodes<TEntity>(
this IHierarchyNodeProvider<TEntity> node
)
where TEntity : EnterpriseOneEntityObject
<ExtensionAttribute>
Public Shared Function GetSubNodes(Of TEntity As EnterpriseOneEntityObject) (
node As IHierarchyNodeProvider(Of TEntity)
) As IEnumerable(Of TEntity)
public:
[ExtensionAttribute]
generic<typename TEntity>
where TEntity : EnterpriseOneEntityObject
static IEnumerable<TEntity>^ GetSubNodes(
IHierarchyNodeProvider<TEntity>^ node
)
[<ExtensionAttribute>]
static member GetSubNodes :
node : IHierarchyNodeProvider<'TEntity> -> IEnumerable<'TEntity> when 'TEntity : EnterpriseOneEntityObject
Parameters
- node
- Type: Aloe.EnterpriseOne.Model.Core.HierarchiesIHierarchyNodeProviderTEntity
The node.
Type Parameters
- TEntity
- The type of the entity.
Return Value
Type:
IEnumerableTEntityUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IHierarchyNodeProviderTEntity. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also