public CancelMode CancelParsing { get; set; }
Public Property CancelParsing As CancelMode
Get
Set
Dim instance As UnknownArgumentEventArgs
Dim value As CancelMode
value = instance.CancelParsing
instance.CancelParsing = value
public:
property CancelMode CancelParsing {
CancelMode get ();
void set (CancelMode value);
}
If the event handler sets this property to a value other than CancelMode.None, command line processing will stop immediately, returning either null or an instance of the arguments class according to the CancelMode value.
If you want usage help to be displayed after canceling, set the CommandLineParser.HelpRequested property to true.