Automation.UI.Tree.QueryParts.QueryMatcherPart.Matches C# (CSharp) Метод

Matches() публичный Метод

Adds a regex condition.
public Matches ( string pattern ) : QueryOperatorPart
pattern string The regeular expression to match.
Результат QueryOperatorPart
        public QueryOperatorPart Matches(string pattern)
        {
            return ApplyMatcher(pattern, Util.Matchers.Regex);
        }