AddAsyncDelegate(IConfigurator, string, Func<CommandContext, CancellationToken, Task<int>>) Method
    Adds a command without settings that executes an async delegate.
    
        public static ICommandConfigurator AddAsyncDelegate(this IConfigurator configurator, string name, Func<CommandContext, CancellationToken, Task<int>> func)
        - Namespace
 - Spectre
.Console .Cli  - Containing Type
 - Configurator
Extensions  
Parameters
- IConfigurator configurator
 - The configurator.
 - string name
 - The name of the command.
 - 
                            Func
<CommandContext, CancellationToken, Task <int> > func  - The delegate to execute as part of command execution.