public PrefixTerminationMode PrefixTermination { get; set; }
Public Property PrefixTermination As PrefixTerminationMode
Get
Set
Dim instance As ParseOptionsAttribute
Dim value As PrefixTerminationMode
value = instance.PrefixTermination
instance.PrefixTermination = value
public:
property PrefixTerminationMode PrefixTermination {
PrefixTerminationMode get ();
void set (PrefixTerminationMode value);
}
Use this property to allow the use of the long argument prefix by itself to either treat all remaining values as positional argument values, even when they start with an argument prefix, or to cancel parsing with CancelModeSuccess so the remaining values can be inspected using the ParseResultRemainingArguments property. This follows typical POSIX argument parsing conventions.
The value of the LongArgumentNamePrefix property is used to identify this special argument, even if the parsing mode is not ParsingModeLongShort.
This value can be overridden by the ParseOptionsPrefixTermination property.