ICommand Interface

Represents a subcommand of the application.

Definition

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

Remarks

To create a subcommand for your application, create a class that implements this interface, then apply the CommandAttribute attribute to it.

The class will be used as an arguments type with the CommandLineParser, so it can define command line arguments using its properties and constructor parameters.

Alternatively, a command can implement its own argument parsing by implementing the ICommandWithCustomParsing interface.

Methods

Run Runs the command.

See Also