public PrefixTerminationMode? PrefixTermination { get; set; }
Public Property PrefixTermination As PrefixTerminationMode?
Get
Set
Dim instance As ParseOptions
Dim value As PrefixTerminationMode?
value = instance.PrefixTermination
instance.PrefixTermination = value
public:
property Nullable<PrefixTerminationMode> PrefixTermination {
Nullable<PrefixTerminationMode> get ();
void set (Nullable<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.
If not , this property overrides the ParseOptionsAttributePrefixTermination property.