ICategoryNodeDescendants Method
|
Gets descendants of this CategoryNode, in a paginzated format.
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
SyntaxIEnumerable<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 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
IEnumerableICategoryNodeCollection of descendant nodes.
RemarksThe natural order of collection is the creation time of CategoryNode. It can be organized by hierarchy value.
See Also