CommandManager.GetCommands Method

Gets information about all the commands managed by this instance.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.1.0+9df03b6173b5fc9d44dc39638758964dd7a0f4c7
C#
public IEnumerable<CommandInfo> GetCommands()

Return Value

IEnumerable<CommandInfo>
Information about every subcommand defined in the assemblies, ordered by command name.

Remarks

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

If the CommandOptions.ParentCommand property is null, only commands without a ParentCommandAttribute attribute are returned. If it is not null, only commands where the type specified using the ParentCommandAttribute attribute matches the value of the property are returned.

The automatic version command is returned if the CommandOptions.AutoVersionCommand property is true and the command name matches the name of the automatic version command, and not any other command name. The CommandOptions.CommandFilter and CommandOptions.ParentCommand property also affect whether the version command is returned.

See Also