Automation.UI.Tree.QueryParts.QueryMatcherPart.ApplyMatcher C# (CSharp) Method

ApplyMatcher() private method

Applies the required property condition in the condition part of the query.
private ApplyMatcher ( object value ) : QueryOperatorPart
value object The expected value for the condition.
return QueryOperatorPart
        private QueryOperatorPart ApplyMatcher(object value)
        {
            ConditionPart.ApplyCondition(new PropertyCondition(Property, value));
            return new QueryOperatorPart(ConditionPart);
        }

Same methods

QueryMatcherPart::ApplyMatcher ( string value, Matcher matcher ) : QueryOperatorPart