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