IGHARemoteObjectGetObjectsByPropertySearchAsync Method |
Returns a collection of objects that contain properties that match the specified search string
Namespace:
RemoteRESTLib
Assembly:
GHARemoteRESTLib (in GHARemoteRESTLib.dll) Version: 1.0.14
Syntax Task<IGHARemoteObjectcollection> GetObjectsByPropertySearchAsync(
string name,
string searchString,
bool recurs = false
)
Function GetObjectsByPropertySearchAsync (
name As String,
searchString As String,
Optional recurs As Boolean = false
) As Task(Of IGHARemoteObjectcollection)
Task<IGHARemoteObjectcollection^>^ GetObjectsByPropertySearchAsync(
String^ name,
String^ searchString,
bool recurs = false
)
abstract GetObjectsByPropertySearchAsync :
name : string *
searchString : string *
?recurs : bool
(* Defaults:
let _recurs = defaultArg recurs false
*)
-> Task<IGHARemoteObjectcollection>
Parameters
- name
- Type: SystemString
[Missing <param name="name"/> documentation for "M:RemoteRESTLib.IGHARemoteObject.GetObjectsByPropertySearchAsync(System.String,System.String,System.Boolean)"]
- searchString
- Type: SystemString
Search string including wildcards 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 contain properties that match the specified search string
See Also