SectionInformation.IsDeclarationRequired Vlastnost

Definice

Získá hodnotu, která označuje, zda konfigurační oddíl musí být deklarován v konfiguračním souboru.

public:
 property bool IsDeclarationRequired { bool get(); };
public bool IsDeclarationRequired { get; }
member this.IsDeclarationRequired : bool
Public ReadOnly Property IsDeclarationRequired As Boolean

Hodnota vlastnosti

true pokud musí být přidružený ConfigurationSection objekt deklarován v konfiguračním souboru, falsev opačném případě .

Příklady

Příklady v této části ukazují, jak získat IsDeclarationRequired hodnotu vlastnosti po přístupu k informacím souvisejícího oddílu v konfiguračním souboru.

Následující příklad získá SectionInformation objekt.

// Get the current configuration file.
System.Configuration.Configuration config =
        ConfigurationManager.OpenExeConfiguration(
        ConfigurationUserLevel.None);

// Get the section.
UrlsSection section =
    (UrlsSection)config.GetSection("MyUrls");

SectionInformation sInfo =
    section.SectionInformation;
' 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)
        
Dim sInfo As SectionInformation = _
section.SectionInformation

Následující příklad získá IsDeclarationRequired hodnotu.

bool declRequired = 
    sInfo.IsDeclarationRequired;
Console.WriteLine("Declaration required?: {0}",
    declRequired.ToString());
Dim declRequired As Boolean = _
sInfo.IsDeclarationRequired
Console.WriteLine("Declaration required?: {0}", _
declRequired.ToString())

Platí pro

Viz také