Catel.ReSharper.Arguments.ArgumentCheckStatementDetectionHelper.IsMatchInvoked C# (CSharp) Method

IsMatchInvoked() public static method

public static IsMatchInvoked ( string methodBody, string argumentName ) : bool
methodBody string
argumentName string
return bool
        public static bool IsMatchInvoked(string methodBody, string argumentName)
        {
            Argument.IsNotNullOrWhitespace(() => argumentName);

            return Regex.IsMatch(methodBody, string.Format(ArgumentCheckStatementDetectionPatterns.IsMatch, argumentName), RegexOptions.IgnorePatternWhitespace) || Regex.IsMatch(methodBody, string.Format(ArgumentCheckStatementDetectionPatterns.IsMatch2, argumentName), RegexOptions.IgnorePatternWhitespace);
        }