AppQuery Constructors
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
AppQuery(QueryPlatform) |
Initial constructor for queries. Should not be called directly, but used as part of the fluent API in the app classes. |
AppQuery(AppQuery, Object[]) |
Constructor for adding more tokens to an existing query in an immutable fashion. Takes the tokens from the old query plus the additional tokens. |
AppQuery(QueryPlatform)
Initial constructor for queries. Should not be called directly, but used as part of the fluent API in the app classes.
public AppQuery (Xamarin.UITest.Queries.QueryPlatform queryPlatform);
new Xamarin.UITest.Queries.AppQuery : Xamarin.UITest.Queries.QueryPlatform -> Xamarin.UITest.Queries.AppQuery
Parameters
- queryPlatform
- QueryPlatform
The query target platform.
Applies to
AppQuery(AppQuery, Object[])
Constructor for adding more tokens to an existing query in an immutable fashion. Takes the tokens from the old query plus the additional tokens.
public AppQuery (Xamarin.UITest.Queries.AppQuery appQuery, params object[] tokens);
new Xamarin.UITest.Queries.AppQuery : Xamarin.UITest.Queries.AppQuery * obj[] -> Xamarin.UITest.Queries.AppQuery
Parameters
- appQuery
- AppQuery
The existing query.
- tokens
- Object[]
The new query tokens.