IAsyncCommandRunAsync Method

Runs the command asynchronously.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.0.0
C#
Task<int> RunAsync()

Return Value

TaskInt32
A task that represents the asynchronous run operation. The result of the task is the exit code for the command.

Remarks

Typically, your applications Main() method should return the exit code of the command that was executed.

This method will only be invoked if you run commands with the RunCommandAsync method or one of its overloads. Typically, it's recommended to implement the Run method to invoke this task. Use the AsyncCommandBase class for a default implementation that does this.

See Also