public bool IncludeApplicationDescriptionBeforeCommandList { get; set; }
Public Property IncludeApplicationDescriptionBeforeCommandList As Boolean
Get
Set
Dim instance As UsageWriter
Dim value As Boolean
value = instance.IncludeApplicationDescriptionBeforeCommandList
instance.IncludeApplicationDescriptionBeforeCommandList = value
public:
property bool IncludeApplicationDescriptionBeforeCommandList {
bool get ();
void set (bool value);
}
The description to show is taken from the AssemblyDescriptionAttribute of the first assembly passed to the CommandManager class. If the assembly has no description, nothing is written.
If the CommandOptionsParentCommand property is not , and the specified type has a DescriptionAttribute, that description is used instead.
To use a custom description, set this property to , and override the WriteApplicationDescription(String) method.