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.

Definition

Namespace: Ookii.CommandLine.Validation
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 5.0.0+724ca9b7fa5edc075ec2ae65044e61b0d494fd1c
C#
public TriState AllowCommaSeparatedValues { get; set; }

Property Value

TriState
TriStateTrue 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.

See Also