IGHARemoteObjectGetChildrenAsync Method |
Returns a collection of objects containing the children of the calling object, optionally done recursively and sorted
Namespace:
RemoteRESTLib
Assembly:
GHARemoteRESTLib (in GHARemoteRESTLib.dll) Version: 1.0.14
Syntax Task<IGHARemoteObjectcollection> GetChildrenAsync(
bool recurs = false,
int startIndex = 0,
int count = 0
)
Function GetChildrenAsync (
Optional recurs As Boolean = false,
Optional startIndex As Integer = 0,
Optional count As Integer = 0
) As Task(Of IGHARemoteObjectcollection)
Task<IGHARemoteObjectcollection^>^ GetChildrenAsync(
bool recurs = false,
int startIndex = 0,
int count = 0
)
abstract GetChildrenAsync :
?recurs : bool *
?startIndex : int *
?count : int
(* Defaults:
let _recurs = defaultArg recurs false
let _startIndex = defaultArg startIndex 0
let _count = defaultArg count 0
*)
-> Task<IGHARemoteObjectcollection>
Parameters
- recurs (Optional)
- Type: SystemBoolean
Recusively searches all children of the calling object if set to true. Performs a direct search if set to false - startIndex (Optional)
- Type: SystemInt32
[Missing <param name="startIndex"/> documentation for "M:RemoteRESTLib.IGHARemoteObject.GetChildrenAsync(System.Boolean,System.Int32,System.Int32)"]
- count (Optional)
- Type: SystemInt32
[Missing <param name="count"/> documentation for "M:RemoteRESTLib.IGHARemoteObject.GetChildrenAsync(System.Boolean,System.Int32,System.Int32)"]
Return Value
Type:
TaskIGHARemoteObjectcollectionThe child objects of the calling object
See Also