Click or drag to resize

CriteriaBitwiseOr Operator

Combines two criterions of the same Criteria.

Namespace:  SmartTests
Assembly:  SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax
public static Criteria operator |(
	Criteria criteria1,
	Criteria criteria2
)

Parameters

criteria1
Type: SmartTestsCriteria
The first Criteria to combine.
criteria2
Type: SmartTestsCriteria
The second Criteria to combine.

Return Value

Type: Criteria
The combined Criteria.
Exceptions
ExceptionCondition
ArgumentNullException If either criteria1 or criteria2 are null.
Remarks
Use | operator to combine criterias of the same Criteria.
See Also