CommandManagerCreateCommand(String, String, Int32) Method

Finds and instantiates the subcommand with the specified name, or if that fails, writes error and usage information.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public ICommand? CreateCommand(
	string? commandName,
	string[] args,
	int index
)

Parameters

commandName  String
The name of the command.
args  String
The arguments to the command.
index  Int32
The index in args at which to start parsing the arguments.

Return Value

ICommand
An instance a class implement the ICommand interface, or if the command was not found or an error occurred parsing the arguments.

Remarks

If the command could not be found, a list of possible commands is written using the UsageWriter. If an error occurs parsing the command's arguments, the error message is written to Error, and the command's usage information is written to UsageWriter.

If the Error parameter is , output is written to a LineWrappingTextWriter for the standard error stream, wrapping at the console's window width. If the stream is redirected, output may still be wrapped, depending on the value returned by WindowWidth.

Commands that don't meet the criteria of the CommandFilter predicate are not returned.

The automatic version command is returned if the AutoVersionCommand property is and the command name matches the name of the automatic version command, and not any other command name.

Exceptions

ArgumentNullExceptionargs is
ArgumentOutOfRangeExceptionindex does not fall inside the bounds of args.

See Also