Automation.UI.Tree.Matchers.RegexMatcher.IsMatch C# (CSharp) Method

IsMatch() public method

Checks to see if the actual value matches the specified expected regular expression.
public IsMatch ( string actual, string expected ) : bool
actual string The actual value.
expected string The expected start value.
return bool
        public override bool IsMatch(string actual, string expected)
        {
            WriteTrace(actual, expected);

            return Regex.IsMatch(actual, expected);
        }