ICategoryNodeChildren Method
|
Gets the child nodes of this CategoryNode in a paginated format.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax IEnumerable<ICategoryNode> Children(
out int count,
int pageSize = -1,
int startIndex = -1
)
Function Children (
<OutAttribute> ByRef count As Integer,
Optional pageSize As Integer = -1,
Optional startIndex As Integer = -1
) As IEnumerable(Of ICategoryNode)
IEnumerable<ICategoryNode^>^ Children(
[OutAttribute] int% count,
int pageSize = -1,
int startIndex = -1
)
abstract Children :
count : int byref *
?pageSize : int *
?startIndex : int
(* Defaults:
let _pageSize = defaultArg pageSize -1
let _startIndex = defaultArg startIndex -1
*)
-> IEnumerable<ICategoryNode>
Parameters
- count
- Type: SystemInt32
Output of total count - 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 child nodes.
See Also