ParentCommandOnChildCommandNotFound Method

Method called when no nested subcommand name was specified, or the nested subcommand could not be found.

Definition

Namespace: Ookii.CommandLine.Commands
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
protected virtual void OnChildCommandNotFound(
	CommandManager manager,
	string? commandName,
	ImmutableArray<string> possibleMatches
)

Parameters

manager  CommandManager
The CommandManager used to create the subcommand.
commandName  String
The name of the nested subcommand, or if none was specified.
possibleMatches  ImmutableArrayString
If commandName was a prefix alias of more than one command, provides an array of the possible command names and aliases. Otherwise, this parameter is an empty array.

Remarks

The base class implementation writes an error message if commandName is not , and usage help with a list of all nested subcommands. If possibleMatches is not empty, it will write a message listing the matching commands instead.

See Also