IAsyncCommand Interface

Represents a subcommand that executes asynchronously.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public interface IAsyncCommand : ICommand
Implements
ICommand

Remarks

This interface adds a RunAsync method to the ICommand interface, that will be invoked by the RunCommandAsync method and its overloads. This allows you to write tasks that use asynchronous code.

Methods

Run Runs the command.
(Inherited from ICommand)
RunAsync Runs the command asynchronously.

See Also