| IGHARemoteObjectGetObjectsByPropertyValueAsync Method  | 
 
            Returns a collection of objects that have the specified property and match the specified value
            
 
    Namespace: 
   RemoteRESTLib
    Assembly:
   GHARemoteRESTLib (in GHARemoteRESTLib.dll) Version: 1.0.14
 Syntax
SyntaxTask<IGHARemoteObjectcollection> GetObjectsByPropertyValueAsync(
	string name,
	Object value,
	bool recurs = false
)
Function GetObjectsByPropertyValueAsync ( 
	name As String,
	value As Object,
	Optional recurs As Boolean = false
) As Task(Of IGHARemoteObjectcollection)
Task<IGHARemoteObjectcollection^>^ GetObjectsByPropertyValueAsync(
	String^ name, 
	Object^ value, 
	bool recurs = false
)
abstract GetObjectsByPropertyValueAsync : 
        name : string * 
        value : Object * 
        ?recurs : bool 
(* Defaults:
        let _recurs = defaultArg recurs false
*)
-> Task<IGHARemoteObjectcollection> 
Parameters
- name
- Type: SystemString
 Name of property for which to search
- value
- Type: SystemObject
 Value to match
- 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 and match the specified value
 See Also
See Also