UsageWriter.WriteCommandHelpInstruction Method

Writes an instruction on how to get help on a command.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
protected virtual void WriteCommandHelpInstruction(
	string name,
	string argumentNamePrefix,
	string argumentName
)

Parameters

name  String
The application and command name.
argumentNamePrefix  String
The argument name prefix for a help argument.
argumentName  String
The automatic help argument name.

Remarks

The base implementation writes a string like "Run 'executable command -Help' for more information on a command."

This method is called by the base implementation of the WriteCommandListUsageFooter() method if the IncludeCommandHelpInstruction property is true, or if it is null and all commands meet the requirements.

See Also