Gets a ConfigurationSectionCollection object that contains all of ConfigurationSection objects within this ConfigurationSectionGroup object.
Assembly: System.Configuration (in System.Configuration.dll)
Syntax
A ConfigurationSectionCollection object that contains all the ConfigurationSection objects within this ConfigurationSectionGroup object.
Public ReadOnly Property Sections As [%$TOPIC/433kw137_en-us_VS_110_4_0_0_0_0%]
public [%$TOPIC/433kw137_en-us_VS_110_4_0_1_0_0%] Sections { get; }
public:
property [%$TOPIC/433kw137_en-us_VS_110_4_0_2_0_0%]^ Sections {
[%$TOPIC/433kw137_en-us_VS_110_4_0_2_0_1%]^ get ();
}
member Sections : [%$TOPIC/433kw137_en-us_VS_110_4_0_3_0_0%] with get
Property Value
Type: System.ConfigurationConfigurationSectionCollectionA ConfigurationSectionCollection object that contains all the ConfigurationSection objects within this ConfigurationSectionGroup object.
Examples
The following code example shows how to access the Sections property. This is part of a larger example provided in the overview for the ConfigurationSectionGroup class.
Dim section As ConfigurationSection
For Each section In sectionGroup.Sections
indent("Section Name:" + section.SectionInformation.Name)
Next section
foreach (ConfigurationSection section
in sectionGroup.Sections)
{
indent("Section Name:" + section.SectionInformation.Name);
}
Platforms
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.