UsageWriterWriteCommandAmbiguousPrefixAliasUsageCore Method

Writes a list of possible matches when the user used a command name that was a prefix alias for multiple commands.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
protected virtual void WriteCommandAmbiguousPrefixAliasUsageCore(
	IEnumerable<string> possibleMatches
)

Parameters

possibleMatches  IEnumerableString
The list of possible command names or aliases.

Remarks

The default implementation writes a list of possible matches, preceded by a header. The command names will be written using the CommandDescriptionColor and by calling the WriteCommandName(String) method.

See Also