示例#1
0
 public CommandRunnerEvent(CommandBase command)
 {
     Command = command;
 }
示例#2
0
        private async Task ExecuteOne(CommandBase command)
        {
            await command.ExecuteAsync().ConfigureAwait(false);

            Executed?.Invoke(this, new CommandRunnerEvent(command));
        }