public bool AllowCommaSeparatedValues { get; set; }
Public Property AllowCommaSeparatedValues As Boolean
Get
Set
Dim instance As ValidateEnumValueAttribute
Dim value As Boolean
value = instance.AllowCommaSeparatedValues
instance.AllowCommaSeparatedValues = value
public:
property bool AllowCommaSeparatedValues {
bool get ();
void set (bool value);
}
This property is not used by the ValidateEnumValueAttribute class itself, but by the EnumConverter class. Therefore, this property may not work if a custom argument converter is used, unless that custom converter also checks this property.