public bool IsHidden { get; }
Public ReadOnly Property IsHidden As Boolean
Get
Dim instance As CommandLineArgument
Dim value As Boolean
value = instance.IsHidden
public:
property bool IsHidden {
bool get ();
}
A hidden argument will not be included in the usage syntax or the argument description list, even if DescriptionListFilterModeAll is used. It does not affect whether the argument can be used.
This property is always for positional or required arguments, which may not be hidden.