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);
        }