CommandLineArgumentAttributeIsHidden Property

Gets or sets a value that indicates whether the argument is hidden from the usage help.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
C#
public bool IsHidden { get; set; }

Property Value

Boolean
if the argument is hidden from the usage help; otherwise, . The default value is .

Remarks

A hidden argument will not be included in the usage syntax or the argument description list, even if DescriptionListFilterModeAll is used.

This property is ignored for positional or required arguments, which may not be hidden.

See Also