Binboo.Core.Util.MessageExtensions.IsPluginCommand C# (CSharp) Method

IsPluginCommand() public static method

public static IsPluginCommand ( this message ) : bool
message this
return bool
        public static bool IsPluginCommand(this string message)
        {
            var pluginMatch = Regex.Match(message, PluginNameRegExp);
            return pluginMatch.Success;
        }