public CommandExecutorEventArgs(CommandExecutorContextBase context)
        {
            if (context == null)
            {
                throw new ArgumentNullException(nameof(context));
            }

            _context = context;
        }
 public CommandExecutorExecutingEventArgs(CommandExecutorContextBase context, bool cancel = false) : base(context)
 {
     _cancel = cancel;
 }
Exemplo n.º 3
0
 public CommandExecutorExecutedEventArgs(CommandExecutorContextBase context) : base(context)
 {
 }