public bool IsHidden { get; set; }
Public Property IsHidden As Boolean
Get
Set
Dim instance As CommandLineArgumentAttribute
Dim value As Boolean
value = instance.IsHidden
instance.IsHidden = value
public:
property bool IsHidden {
bool get ();
void set (bool value);
}
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.