IntegerValidatorAttribute.MaxValue 属性

定义

获取或设置属性允许的最大值。

public:
 property int MaxValue { int get(); void set(int value); };
public int MaxValue { get; set; }
member this.MaxValue : int with get, set
Public Property MaxValue As Integer

属性值

一个整数,指示允许的最大值。

例外

示例

下面的示例演示如何使用 MaxValue 属性。

[ConfigurationProperty("maxAttempts", DefaultValue = 101,
    IsRequired = true)]
[IntegerValidator(MinValue = 1, MaxValue = 100,
    ExcludeRange = true)]
public int MaxAttempts
{
    get
    {
        return (int)this["maxAttempts"];
    }
    set
    {
        this["maxAttempts"] = value;
    }
}
<ConfigurationProperty("maxAttempts", _
DefaultValue:=101, _
IsRequired:=True), _
IntegerValidator(MinValue:=1, _
MaxValue:=100, _
ExcludeRange:=True)> _
Public Property MaxAttempts() As Integer
    Get
        Return Fix(Me("maxAttempts"))
    End Get
    Set(ByVal value As Integer)
        Me("maxAttempts") = value
    End Set
End Property

注解

MaxValue属性值包含在允许的范围内。

适用于