IGHARemoteObjectGetObjectsByTypeAsync Method |
Returns objects of the specified type
Namespace:
RemoteRESTLib
Assembly:
GHARemoteRESTLib (in GHARemoteRESTLib.dll) Version: 1.0.14
Syntax Task<IGHARemoteObjectcollection> GetObjectsByTypeAsync(
string path,
bool recurs = false
)
Function GetObjectsByTypeAsync (
path As String,
Optional recurs As Boolean = false
) As Task(Of IGHARemoteObjectcollection)
Task<IGHARemoteObjectcollection^>^ GetObjectsByTypeAsync(
String^ path,
bool recurs = false
)
abstract GetObjectsByTypeAsync :
path : string *
?recurs : bool
(* Defaults:
let _recurs = defaultArg recurs false
*)
-> Task<IGHARemoteObjectcollection>
Parameters
- path
- Type: SystemString
.NET type for which to search - recurs (Optional)
- Type: SystemBoolean
Recusively searches all children of the calling object if set to true. Performs a direct search if set to false
Return Value
Type:
TaskIGHARemoteObjectcollectionObject collection matching the specified type
See Also