public bool HelpRequested { get; }
Public ReadOnly Property HelpRequested As Boolean
Get
Dim instance As ParseResult
Dim value As Boolean
value = instance.HelpRequested
public:
property bool HelpRequested {
bool get ();
}
Check this property after parsing the command line arguments to see if usage help should be displayed.
This property will always be if the Status property is ParseStatusSuccess.
This property will always be if the parsing command line arguments threw a CommandLineArgumentException, or if an argument used CancelModeAbortWithHelp with the CommandLineArgumentAttributeCancelParsing property, the CommandLineParserArgumentParsed event, or as the return value of a method argument.