ValidateEnumValueAttributeAllowCommaSeparatedValues Property
Gets or sets a value that indicates whether the value provided by the user can use commas
to provide multiple values that will be combined with bitwise-or.
Namespace: Ookii.CommandLine.ValidationAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
public TriState AllowCommaSeparatedValues { get; set; }
Public Property AllowCommaSeparatedValues As TriState
Get
Set
Dim instance As ValidateEnumValueAttribute
Dim value As TriState
value = instance.AllowCommaSeparatedValues
instance.AllowCommaSeparatedValues = value
public:
property TriState AllowCommaSeparatedValues {
TriState get ();
void set (TriState value);
}
Property Value
TriStateTriStateTrue if comma-separated values are allowed;
TriStateFalse if they are not;
TriStateAuto to allow comma-separated values only if the
enumeration has the
FlagsAttribute applied. The default value is
TriStateAuto.