SectionInformation.IsDeclared Property
.NET Framework 4
Gets a value that indicates whether the associated configuration section is declared in the configuration file.
Assembly: System.Configuration (in System.Configuration.dll)
Property Value
Type: System.Booleantrue if this ConfigurationSection is declared in the configuration file; otherwise, false. The default is true.
The examples in this section show how to get the IsDeclared 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 IsDeclared value.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.