SectionInformation.IsDeclarationRequired Property
.NET Framework (current version)
Gets a value that indicates whether the configuration section must be declared in the configuration file.
Assembly: System.Configuration (in System.Configuration.dll)
Property Value
Type: System.Booleantrue if the associated ConfigurationSection object must be declared in the configuration file; otherwise, false.
The examples in this section show how to get the IsDeclarationRequired property value after accessing the related section information in the configuration file.
The following example gets the SectionInformation object.
// 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;
The following example gets the IsDeclarationRequired value.
.NET Framework
Available since 2.0
Available since 2.0
Show: