IntegerValidatorAttribute.ValidatorInstance Tulajdonság
Definíció
Fontos
Egyes információk olyan, kiadás előtti termékekre vonatkoznak, amelyek a kiadásig még jelentősen módosulhatnak. A Microsoft nem vállal kifejezett vagy törvényi garanciát az itt megjelenő információért.
Lekéri az osztály egy példányát 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
Tulajdonság értéke
Az ConfigurationValidatorBase érvényesítő példány.
Példák
Az alábbi példa bemutatja, hogyan használhatja a tulajdonságot 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 '
Megjegyzések
A tulajdonság használatával sztringellenőrzést ValidatorInstance hajthat végre a metódus meghívásával Validate .