IntegerValidatorAttribute コンストラクター

定義

IntegerValidatorAttribute クラスの新しいインスタンスを作成します。

public:
 IntegerValidatorAttribute();
public IntegerValidatorAttribute ();
Public Sub New ()

次の例は、IntegerValidatorAttribute コンストラクターを使用する方法を示しています。

[ConfigurationProperty("maxSize", DefaultValue = 1000,
    IsRequired = true)]
[IntegerValidator()]
public int MaxSize
{
    get
    {
        return (int)this["maxSize"];
    }
    set
    {
        this["maxSize"] = value;
    }
}
<ConfigurationProperty("maxSize", _
DefaultValue:=1000, _
IsRequired:=True), _
IntegerValidator()> _
Public Property MaxSize() As Integer
    Get
        Return Fix(Me("maxSize"))
    End Get
    Set(ByVal value As Integer)
        Me("maxSize") = value
    End Set
End Property

注釈

属性付きモデルでは、このコンストラクターを使用して、関連するプロパティに割り当てられた値が整数であることを確認します。

適用対象