AndCondition Constructors

Definition

Overloads

AndCondition()

Initializes a new instance of the AndCondition class.

AndCondition(IQueryCondition[])

Initializes a new instance of the AndCondition class by using the provided conditions.

AndCondition()

Initializes a new instance of the AndCondition class.

public:
 AndCondition();
public AndCondition ();
Public Sub New ()

Applies to

AndCondition(IQueryCondition[])

Initializes a new instance of the AndCondition class by using the provided conditions.

public:
 AndCondition(... cli::array <Microsoft::VisualStudio::TestTools::UITest::Extension::IQueryCondition ^> ^ conditions);
public AndCondition (params Microsoft.VisualStudio.TestTools.UITest.Extension.IQueryCondition[] conditions);
new Microsoft.VisualStudio.TestTools.UITest.Extension.AndCondition : Microsoft.VisualStudio.TestTools.UITest.Extension.IQueryCondition[] -> Microsoft.VisualStudio.TestTools.UITest.Extension.AndCondition
Public Sub New (ParamArray conditions As IQueryCondition())

Parameters

conditions
IQueryCondition[]

An array of IQueryCondition objects.

Applies to