SectionInformation.IsDeclarationRequired Propriété

Définition

Obtient une valeur qui indique si la section de configuration doit être déclarée dans le fichier de configuration.

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

Valeur de propriété

true si l'objet ConfigurationSection associé doit être déclaré dans le fichier de configuration ; sinon, false.

Exemples

Les exemples de cette section montrent comment obtenir la valeur de propriété IsDeclarationRequired après avoir accédé aux informations de section associées dans le fichier de configuration.

L’exemple suivant obtient l’objet SectionInformation .

// 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

L’exemple suivant obtient la IsDeclarationRequired valeur .

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

S’applique à

Voir aussi