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.3.169
Syntax IEnumerable<ICategoryNode> Descendants(
out int count,
int depth = 0,
int pageSize = -1,
int startIndex = -1
)
Function Descendants (
<OutAttribute> ByRef count As Integer,
Optional depth As Integer = 0,
Optional pageSize As Integer = -1,
Optional startIndex As Integer = -1
) As IEnumerable(Of ICategoryNode)
IEnumerable<ICategoryNode^>^ Descendants(
[OutAttribute] int% count,
int depth = 0,
int pageSize = -1,
int startIndex = -1
)
abstract Descendants :
count : int byref *
?depth : int *
?pageSize : int *
?startIndex : int
(* Defaults:
let _depth = defaultArg depth 0
let _pageSize = defaultArg pageSize -1
let _startIndex = defaultArg startIndex -1
*)
-> IEnumerable<ICategoryNode>
Parameters
- count
- Type: SystemInt32
Output of total count - depth (Optional)
- Type: SystemInt32
The number of levels of descendants to return - pageSize (Optional)
- Type: SystemInt32
Number of items to return; default is all items. - startIndex (Optional)
- Type: SystemInt32
Starting item index; default is first item.
Return Value
Type:
IEnumerableICategoryNodeCollection of descendant nodes.
Remarks The natural order of collection is the creation time of CategoryNode. It can be organized by hierarchy value.
See Also