ConfigurationSectionCollection Class
.NET Framework 3.0
Represents a collection of related sections within a configuration file.
Namespace: System.Configuration
Assembly: System.Configuration (in system.configuration.dll)
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
Not applicable.
Use the ConfigurationSectionCollection class 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 class is also used in the creation of custom types that extend the ConfigurationSection class.
The following code example shows how to use the ConfigurationSectionCollection class.
The following example is an excerpt of the configuration file used by the previous 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.Object
System.Collections.Specialized.NameObjectCollectionBase
System.Configuration.ConfigurationSectionCollection
System.Collections.Specialized.NameObjectCollectionBase
System.Configuration.ConfigurationSectionCollection
Windows 98, Windows Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: