Edit

Share via


ConfigurationSectionGroup.Sections Property

Definition

Gets a ConfigurationSectionCollection object that contains all of ConfigurationSection objects within this ConfigurationSectionGroup object.

public System.Configuration.ConfigurationSectionCollection Sections { get; }

Property Value

A 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.

foreach (ConfigurationSection section 
    in sectionGroup.Sections)
{
    indent("Section Name:" + section.SectionInformation.Name);
}

Applies to

See also