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