コード例 #1
0
        public CommandExecutorEventArgs(CommandExecutorContextBase context)
        {
            if (context == null)
            {
                throw new ArgumentNullException(nameof(context));
            }

            _context = context;
        }
コード例 #2
0
 public CommandExecutorExecutingEventArgs(CommandExecutorContextBase context, bool cancel = false) : base(context)
 {
     _cancel = cancel;
 }
コード例 #3
0
 public CommandExecutorExecutedEventArgs(CommandExecutorContextBase context) : base(context)
 {
 }