StringValidatorAttribute.ValidatorInstance プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
StringValidator クラスのインスタンスを取得します。
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
プロパティ値
StringValidator 検証コントロール インスタンスの現在の ConfigurationValidatorBase 設定。
例
ValidatorInstance プロパティを使用する方法を次の例に示します。
ConfigurationValidatorBase valBase;
StringValidatorAttribute strValAttr =
new StringValidatorAttribute();
long badValue = 10;
string goodValue = "10";
try
{
valBase = strValAttr.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 strValAttr As New StringValidatorAttribute()
Dim badValue As Long = 10
Dim goodValue As String = "10"
Try
valBase = strValAttr.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