IntegerValidatorAttribute.ValidatorInstance プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
IntegerValidator クラスのインスタンスを取得します。
public:
virtual property System::Configuration::ConfigurationValidatorBase ^ ValidatorInstance { System::Configuration::ConfigurationValidatorBase ^ get(); };
public override System.Configuration.ConfigurationValidatorBase ValidatorInstance { get; }
member this.ValidatorInstance : System.Configuration.ConfigurationValidatorBase
Public Overrides ReadOnly Property ValidatorInstance As ConfigurationValidatorBase
プロパティ値
ConfigurationValidatorBase 検証コントロールのインスタンス。
例
ValidatorInstance プロパティを使用する方法を次の例に示します。
ConfigurationValidatorBase valBase;
IntegerValidatorAttribute intValAttr;
intValAttr = new IntegerValidatorAttribute();
long badValue = 10;
int goodValue = 10;
try
{
valBase = intValAttr.ValidatorInstance;
valBase.Validate(goodValue);
// valBase.Validate(badValue);
}
catch (ArgumentException e)
{
// Display error message.
string msg = e.ToString();
#if DEBUG
Console.WriteLine(msg);
#endif
}
Dim valBase As ConfigurationValidatorBase
Dim intValAttr As IntegerValidatorAttribute
intValAttr = New IntegerValidatorAttribute()
Dim badValue As Long = 10
Dim goodValue As Integer = 10
Try
valBase = intValAttr.ValidatorInstance
valBase.Validate(goodValue)
' valBase.Validate(badValue);
Catch e As ArgumentException
' Display error message.
Dim msg As String = e.ToString()
#If DEBUG Then
Console.WriteLine(msg)
#End If
End Try '
注釈
プロパティを使用して、 ValidatorInstance そのメソッドを呼び出して文字列の検証を Validate 実行します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET