ElementInformation.Validator 속성

정의

연결된 ConfigurationElement 개체의 유효성을 검사하는 데 사용되는 개체를 가져옵니다.

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

속성 값

연결된 ConfigurationElement 개체의 유효성을 검사하는 데 사용되는 개체입니다.

예제

다음 예제에서는 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

설명

유효성 검사기 개체는 필요하지 않으며 이 속성은 를 반환 null할 수 있습니다.

적용 대상