UsageWriterIncludeCommandHelpInstruction Property

Gets or sets a value that indicates whether a message is shown at the bottom of the command list that instructs the user how to get help for individual commands.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
C#
public bool? IncludeCommandHelpInstruction { get; set; }

Property Value

NullableBoolean
to show the instruction if all commands have the default help argument; to always show the instruction; otherwise, . The default value is .

Remarks

If this property is , the instruction will be shown under the following conditions:

If set to , the message is shown even if not all commands meet these restrictions.

To customize the message, override the WriteCommandHelpInstruction(String, String, String) method.

See Also