AppQuery.Property Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Property(String) |
Allows for further filtering on a given property value. |
Property(String, Boolean) |
Matches a property or getter method value on the element. |
Property(String, Int32) |
Matches a property or getter method value on the element. |
Property(String, String) |
Matches a property or getter method value on the element. |
Property(String)
Allows for further filtering on a given property value.
public Xamarin.UITest.Queries.PropertyAppQuery Property (string propertyName);
member this.Property : string -> Xamarin.UITest.Queries.PropertyAppQuery
Public Function Property (propertyName As String) As PropertyAppQuery
Parameters
- propertyName
- String
The name of the property.
Returns
Applies to
Property(String, Boolean)
Matches a property or getter method value on the element.
public Xamarin.UITest.Queries.AppQuery Property (string propertyName, bool value);
member this.Property : string * bool -> Xamarin.UITest.Queries.AppQuery
Public Function Property (propertyName As String, value As Boolean) As AppQuery
Parameters
- propertyName
- String
The name of the property.
- value
- Boolean
The value to match.
Returns
Applies to
Property(String, Int32)
Matches a property or getter method value on the element.
public Xamarin.UITest.Queries.AppQuery Property (string propertyName, int value);
member this.Property : string * int -> Xamarin.UITest.Queries.AppQuery
Public Function Property (propertyName As String, value As Integer) As AppQuery
Parameters
- propertyName
- String
The name of the property.
- value
- Int32
The value to match.
Returns
Applies to
Property(String, String)
Matches a property or getter method value on the element.
public Xamarin.UITest.Queries.AppQuery Property (string propertyName, string value);
member this.Property : string * string -> Xamarin.UITest.Queries.AppQuery
Public Function Property (propertyName As String, value As String) As AppQuery
Parameters
- propertyName
- String
The name of the property.
- value
- String
The value to match.