public bool AllowNumericValues { get; set; }
Public Property AllowNumericValues As Boolean
Get
Set
Dim instance As ValidateEnumValueAttribute
Dim value As Boolean
value = instance.AllowNumericValues
instance.AllowNumericValues = value
public:
property bool AllowNumericValues {
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.