CommandManagerGetCommand Method

Gets the subcommand with the specified command name.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.1.1
C#
public CommandInfo? GetCommand(
	string commandName
)

Parameters

commandName  String
The name of the subcommand.

Return Value

NullableCommandInfo
A CommandInfo instance for the specified subcommand, or if none could be found.

Remarks

The command is located by searching all types in the assemblies for a command type whose command name matches the specified name. If there are multiple commands with the same name, the first matching one will be returned.

A command's name is taken from the CommandName property. If that property is , the name is determined by taking the command type's name, and applying the transformation specified by the CommandNameTransform property.

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 commandName matches the name of the automatic version command, and not any other command name.

Exceptions

ArgumentNullExceptioncommandName is .

See Also