System.ComponentModel.DataAnnotations

January 13, 2025 ยท View on GitHub

 namespace System.ComponentModel.DataAnnotations {
     public class DisplayFormatAttribute : Attribute {
+        public Type NullDisplayTextResourceType { get; set; }
+        public string GetNullDisplayText();
     }
     public class RangeAttribute : ValidationAttribute {
+        public bool ConvertValueInInvariantCulture { get; set; }
+        public bool ParseLimitsInInvariantCulture { get; set; }
     }
 }