Binboo.Core.Application.ProcessCommand C# (CSharp) Method

ProcessCommand() private static method

private static ProcessCommand ( Binboo.Core.Framework.IUser user, IPlugin plugin, string commandLine, ICommandResult previousResullt ) : ICommandResult
user Binboo.Core.Framework.IUser
plugin IPlugin
commandLine string
previousResullt ICommandResult
return ICommandResult
        private static ICommandResult ProcessCommand(IUser user, IPlugin plugin, string commandLine, ICommandResult previousResullt)
        {
            try
            {
                return SafeProcessCommand(user, plugin, commandLine, previousResullt);
            }
            catch(Exception ex)
            {
                return CommandResult.Exception(ex);
            }
        }