ConfigurationSectionCollection Class
Assembly: System.Configuration (in system.configuration.dll)
'Declaration <SerializableAttribute> _ Public NotInheritable Class ConfigurationSectionCollection Inherits NameObjectCollectionBase 'Usage Dim instance As ConfigurationSectionCollection
/** @attribute SerializableAttribute() */ public final class ConfigurationSectionCollection extends NameObjectCollectionBase
SerializableAttribute public final class ConfigurationSectionCollection extends NameObjectCollectionBase
Use the ConfigurationSectionCollection to iterate through a collection of ConfigurationSection objects. You can access this collection of objects using the Sections property or the Sections property.
The ConfigurationSectionCollection is also used in the creation of custom types that extend the ConfigurationSection class.
The following code example shows how to use the ConfigurationSectionCollection.
The following is an excerpt of the configuration used by the example.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="CustomSection"
type="Samples.AspNet.Configuration.CustomSection, ConfigurationSectionCollection, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" allowDefinition="Everywhere" allowExeDefinition="MachineToApplication" restartOnExternalChanges="true" />
</configSections>
<CustomSection fileName="default.txt" maxUsers="1000"
maxIdleTime="00:05:00" />
</configuration>
System.Collections.Specialized.NameObjectCollectionBase
System.Configuration.ConfigurationSectionCollection
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.