ElementInformation.Validator Egenskap
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Hämtar det objekt som används för att verifiera det associerade ConfigurationElement objektet.
public:
property System::Configuration::ConfigurationValidatorBase ^ Validator { System::Configuration::ConfigurationValidatorBase ^ get(); };
public System.Configuration.ConfigurationValidatorBase Validator { get; }
member this.Validator : System.Configuration.ConfigurationValidatorBase
Public ReadOnly Property Validator As ConfigurationValidatorBase
Egenskapsvärde
Det objekt som används för att verifiera det associerade ConfigurationElement objektet.
Exempel
I följande exempel visas hur du använder egenskapen Validator .
static public void GetElementValidator()
{
// Get the current configuration file.
System.Configuration.Configuration config =
ConfigurationManager.OpenExeConfiguration(
ConfigurationUserLevel.None);
// Get the section.
UrlsSection section =
(UrlsSection)config.GetSection("MyUrls");
// Get the element.
UrlConfigElement url = section.Simple;
// Get the element source file.
ConfigurationValidatorBase elValidator =
url.ElementInformation.Validator;
Console.WriteLine("Url element validator: {0}",
elValidator.ToString());
}
Public Shared Sub GetElementValidator()
' Get the current configuration file.
Dim config _
As System.Configuration.Configuration = _
ConfigurationManager.OpenExeConfiguration( _
ConfigurationUserLevel.None)
' Get the section.
Dim section As UrlsSection = _
CType(config.GetSection("MyUrls"), UrlsSection)
' Get the element.
Dim url As UrlConfigElement = _
section.Simple
' Get the element source file.
Dim elValidator _
As ConfigurationValidatorBase = _
url.ElementInformation.Validator
Console.WriteLine("Url element validator: {0}", _
elValidator.ToString())
End Sub
Kommentarer
Ett validatorobjekt krävs inte och den här egenskapen kan returnera null.