Automation.UI.Tree.QueryParts.QueryMatcherPart.Matches C# (CSharp) Méthode

Matches() public méthode

Adds a regex condition.
public Matches ( string pattern ) : QueryOperatorPart
pattern string The regeular expression to match.
Résultat QueryOperatorPart
        public QueryOperatorPart Matches(string pattern)
        {
            return ApplyMatcher(pattern, Util.Matchers.Regex);
        }