IntegerValidatorAttribute.MinValue 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定此屬性所允許的最小值。
public:
property int MinValue { int get(); void set(int value); };
public int MinValue { get; set; }
member this.MinValue : int with get, set
Public Property MinValue As Integer
屬性值
整數,表示允許的最小值。
例外狀況
選取的值大於 MaxValue。
範例
下列範例將示範如何使用 MinValue 屬性。
[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
備註
MinValue屬性值包含在允許的範圍中。