Share via


IntegerValidatorAttribute.ExcludeRange 屬性

定義

取得或設定值,指出要加入還是排除 MinValueMaxValue 屬性值所定義範圍中的整數。

public:
 property bool ExcludeRange { bool get(); void set(bool value); };
public bool ExcludeRange { get; set; }
member this.ExcludeRange : bool with get, set
Public Property ExcludeRange As Boolean

屬性值

如果必須排除此值,則為 true,否則為 false。 預設為 false

範例

下列範例將示範如何使用 ExcludeRange 屬性。

[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

備註

範圍包含 MinValueMaxValue 屬性值。 ExcludeRange當屬性值為 true時,允許的值會超出範圍。

適用於