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

SafeProcessCommand() private static method

private static SafeProcessCommand ( 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 SafeProcessCommand(IUser user, IPlugin plugin, string commandLine, ICommandResult previousResullt)
        {
            var ctx = PipedContextFor(plugin, user, commandLine, previousResullt);
            return plugin.ExecuteCommand(GetCommandName(commandLine), ctx);
        }