ICommandWithCustomParsing Interface

Represents a subcommand that does its own argument parsing.

Definition

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

Remarks

Unlike commands that only implement the ICommand interfaces, commands that implement the ICommandWithCustomParsing interface are not created with the CommandLineParser. Instead, they must have a public constructor with no parameters, and must parse the arguments manually by implementing the Parse(String, Int32, CommandOptions) method.

Methods

Parse Parses the arguments for the command.
Run Runs the command.
(Inherited from ICommand)

See Also