Click or drag to resize

ICategoryNodeDescendants Method


Gets descendants of this CategoryNode, in a paginzated format.

Namespace: Ingeniux.CMS
Assembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntax
IEnumerable<ICategoryNode> Descendants(
	out int count,
	int depth = 0,
	int pageSize = -1,
	int startIndex = -1
)

Parameters

count  Int32
Output of total count
depth  Int32  (Optional)
The number of levels of descendants to return
pageSize  Int32  (Optional)
Number of items to return; default is all items.
startIndex  Int32  (Optional)
Starting item index; default is first item.

Return Value

IEnumerableICategoryNode
Collection of descendant nodes.
Remarks
The natural order of collection is the creation time of CategoryNode. It can be organized by hierarchy value.
See Also