ArgumentParsedEventArgsOverrideCancelParsing Property |
Gets or sets a value that indicates whether or not the
CancelParsing
property should be ignored.
Namespace:
Ookii.CommandLine
Assembly:
Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.4.0
Syntaxpublic bool OverrideCancelParsing { get; set; }
Public Property OverrideCancelParsing As Boolean
Get
Set
Dim instance As ArgumentParsedEventArgs
Dim value As Boolean
value = instance.OverrideCancelParsing
instance.OverrideCancelParsing = value
public:
property bool OverrideCancelParsing {
bool get ();
void set (bool value);
}
Property Value
Type:
Boolean if argument parsing should continue even if the argument has
CancelParsing set to
;
otherwise,
. The default value is
.
Remarks
This property does not affect the Cancel property.
If Cancel is set to , parsing
is always cancelled regardless of the value of OverrideCancelParsing.
See Also