RangeAttribute 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 RangeAttribute 类的新实例。
重载
RangeAttribute(Double, Double) |
使用指定的最小值和最大值初始化 RangeAttribute 类的一个新实例。 |
RangeAttribute(Int32, Int32) |
使用指定的最小值和最大值初始化 RangeAttribute 类的一个新实例。 |
RangeAttribute(Type, String, String) |
使用指定的最小值和最大值以及特定类型初始化 RangeAttribute 类的一个新实例。 |
RangeAttribute(Double, Double)
- Source:
- RangeAttribute.cs
- Source:
- RangeAttribute.cs
- Source:
- RangeAttribute.cs
使用指定的最小值和最大值初始化 RangeAttribute 类的一个新实例。
public:
RangeAttribute(double minimum, double maximum);
public RangeAttribute (double minimum, double maximum);
new System.ComponentModel.DataAnnotations.RangeAttribute : double * double -> System.ComponentModel.DataAnnotations.RangeAttribute
Public Sub New (minimum As Double, maximum As Double)
参数
- minimum
- Double
指定数据字段值所允许的最小值。
- maximum
- Double
指定数据字段值所允许的最大值。
适用于
RangeAttribute(Int32, Int32)
- Source:
- RangeAttribute.cs
- Source:
- RangeAttribute.cs
- Source:
- RangeAttribute.cs
使用指定的最小值和最大值初始化 RangeAttribute 类的一个新实例。
public:
RangeAttribute(int minimum, int maximum);
public RangeAttribute (int minimum, int maximum);
new System.ComponentModel.DataAnnotations.RangeAttribute : int * int -> System.ComponentModel.DataAnnotations.RangeAttribute
Public Sub New (minimum As Integer, maximum As Integer)
参数
- minimum
- Int32
指定数据字段值所允许的最小值。
- maximum
- Int32
指定数据字段值所允许的最大值。
示例
以下示例演示如何使用 RangeAttribute 指定整数数据字段的范围。
[Range(300, 3000)]
public object ListPrice;
<Range(300, 3000)> _
Public ListPrice As Object
适用于
RangeAttribute(Type, String, String)
- Source:
- RangeAttribute.cs
- Source:
- RangeAttribute.cs
- Source:
- RangeAttribute.cs
使用指定的最小值和最大值以及特定类型初始化 RangeAttribute 类的一个新实例。
public:
RangeAttribute(Type ^ type, System::String ^ minimum, System::String ^ maximum);
public RangeAttribute (Type type, string minimum, string maximum);
new System.ComponentModel.DataAnnotations.RangeAttribute : Type * string * string -> System.ComponentModel.DataAnnotations.RangeAttribute
Public Sub New (type As Type, minimum As String, maximum As String)
参数
- type
- Type
指定要测试的对象的类型。
- minimum
- String
指定数据字段值所允许的最小值。
- maximum
- String
指定数据字段值所允许的最大值。
例外
type
为 null
。
示例
以下示例演示如何使用 RangeAttribute 方法指定字段的范围 DateTime
。 它还包括一条自定义错误消息,显示如何使用 方法的格式 FormatErrorMessage 设置功能。
[Range(typeof(DateTime), "1/2/2004", "3/4/2004",
ErrorMessage = "Value for {0} must be between {1} and {2}")]
public object SellEndDate;
<Range(GetType(DateTime), "1/2/2004", "3/4/2004", _
ErrorMessage:="Value for {0} must be between {1} and {2}")> _
Public SellEndDate As Object
注解
要验证的对象必须实现 IComparable 接口。