StringValidatorAttribute.ValidatorInstance Eigenschap
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Hiermee haalt u een exemplaar van de StringValidator klasse op.
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
Waarde van eigenschap
Een huidige StringValidator instellingen in een ConfigurationValidatorBase validator-exemplaar.
Voorbeelden
In het volgende voorbeeld ziet u hoe u de ValidatorInstance eigenschap gebruikt.
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 '
Opmerkingen
U gebruikt de ValidatorInstance eigenschap om tekenreeksvalidatie uit te voeren door de methode aan Validate te roepen.