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 false if the Status property is ParseStatus.Success.
This property will always be true if the parsing command line arguments threw a CommandLineArgumentException, or if an argument used CancelMode.AbortWithHelp with the CommandLineArgumentAttribute.CancelParsing property, the CommandLineParser.ArgumentParsed event, or as the return value of a method argument.