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

StartsWith() public method

Adds a starts with condition.
public StartsWith ( string value ) : QueryOperatorPart
value string The expected value.
return QueryOperatorPart
        public QueryOperatorPart StartsWith(string value)
        {
            return ApplyMatcher(value, Util.Matchers.StartsWith);
        }