public virtual bool IsPosix { get; set; }
Public Overridable Property IsPosix As Boolean
Get
Set
Dim instance As ParseOptions
Dim value As Boolean
value = instance.IsPosix
instance.IsPosix = value
public:
virtual property bool IsPosix {
bool get ();
void set (bool value);
}
This property is provided as a convenient way to set a number of related properties that together indicate the parser is using POSIX conventions. POSIX conventions in this case means that parsing uses long/short mode, argument names are case sensitive, and argument names and value descriptions use dash case (e.g. "argument-name").
Setting this property to is equivalent to setting the Mode property to ParsingModeLongShort, the ArgumentNameComparison property to StringComparisonInvariantCulture, the ArgumentNameTransform property to NameTransformDashCase, and the ValueDescriptionTransform property to NameTransformDashCase.
This property will only return if the above properties are the indicated values, except that ArgumentNameComparison can be any case-sensitive comparison. It will return for any other combination of values, not just the ones indicated below.
Setting this property to is equivalent to setting the Mode property to ParsingModeDefault, the ArgumentNameComparison property to StringComparisonOrdinalIgnoreCase, the ArgumentNameTransform property to NameTransformNone, and the ValueDescriptionTransform property to NameTransformNone.