次の方法で共有


IntegerValidatorAttribute.ExcludeRange プロパティ

定義

整数を、MinValue プロパティ値と MaxValue プロパティ値によって定義された範囲内に含めるか、その範囲から除外するかを示す値を取得または設定します。

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

注釈

範囲には、 および MaxValue プロパティの値がMinValue含まれます。 プロパティ値が ExcludeRange の場合、 true許可される値は範囲外です。

適用対象