IGHARemoteObjectGetObjectsByPropertyNameAsync Method |
Returns a collection of child objects that have the specified property
Namespace:
RemoteRESTLib
Assembly:
GHARemoteRESTLib (in GHARemoteRESTLib.dll) Version: 1.0.14
Syntax Task<IGHARemoteObjectcollection> GetObjectsByPropertyNameAsync(
string name,
bool recurs = false
)
Function GetObjectsByPropertyNameAsync (
name As String,
Optional recurs As Boolean = false
) As Task(Of IGHARemoteObjectcollection)
Task<IGHARemoteObjectcollection^>^ GetObjectsByPropertyNameAsync(
String^ name,
bool recurs = false
)
abstract GetObjectsByPropertyNameAsync :
name : string *
?recurs : bool
(* Defaults:
let _recurs = defaultArg recurs false
*)
-> Task<IGHARemoteObjectcollection>
Parameters
- name
- Type: SystemString
Name of property 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:
TaskIGHARemoteObjectcollectionCollection of objects that have the specified property
See Also