ConfigurationSectionCollection Class
Represents a collection of related sections within a configuration file.
System.Collections.Specialized::NameObjectCollectionBase
System.Configuration::ConfigurationSectionCollection
Assembly: System.Configuration (in System.Configuration.dll)
The ConfigurationSectionCollection type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Count | Gets the number of sections in this ConfigurationSectionCollection object. (Overrides NameObjectCollectionBase::Count.) |
![]() | IsReadOnly | Gets or sets a value indicating whether the NameObjectCollectionBase instance is read-only. (Inherited from NameObjectCollectionBase.) |
![]() | Item[Int32] | Gets the specified ConfigurationSection object. |
![]() | Item[String] | Gets the specified ConfigurationSection object. |
![]() | Keys | Gets the keys to all ConfigurationSection objects contained in this ConfigurationSectionCollection object. (Overrides NameObjectCollectionBase::Keys.) |
| Name | Description | |
|---|---|---|
![]() | Add | Adds a ConfigurationSection object to the ConfigurationSectionCollection object. |
![]() | BaseAdd | Adds an entry with the specified key and value into the NameObjectCollectionBase instance. (Inherited from NameObjectCollectionBase.) |
![]() | BaseClear | Removes all entries from the NameObjectCollectionBase instance. (Inherited from NameObjectCollectionBase.) |
![]() | BaseGet(Int32) | Gets the value of the entry at the specified index of the NameObjectCollectionBase instance. (Inherited from NameObjectCollectionBase.) |
![]() | BaseGet(String) | Gets the value of the first entry with the specified key from the NameObjectCollectionBase instance. (Inherited from NameObjectCollectionBase.) |
![]() | BaseGetAllKeys | Returns a String array that contains all the keys in the NameObjectCollectionBase instance. (Inherited from NameObjectCollectionBase.) |
![]() | BaseGetAllValues() | Returns an Object array that contains all the values in the NameObjectCollectionBase instance. (Inherited from NameObjectCollectionBase.) |
![]() | BaseGetAllValues(Type) | Returns an array of the specified type that contains all the values in the NameObjectCollectionBase instance. (Inherited from NameObjectCollectionBase.) |
![]() | BaseGetKey | Gets the key of the entry at the specified index of the NameObjectCollectionBase instance. (Inherited from NameObjectCollectionBase.) |
![]() | BaseHasKeys | Gets a value indicating whether the NameObjectCollectionBase instance contains entries whose keys are not nullptr. (Inherited from NameObjectCollectionBase.) |
![]() | BaseRemove | Removes the entries with the specified key from the NameObjectCollectionBase instance. (Inherited from NameObjectCollectionBase.) |
![]() | BaseRemoveAt | Removes the entry at the specified index of the NameObjectCollectionBase instance. (Inherited from NameObjectCollectionBase.) |
![]() | BaseSet(Int32, Object) | Sets the value of the entry at the specified index of the NameObjectCollectionBase instance. (Inherited from NameObjectCollectionBase.) |
![]() | BaseSet(String, Object) | Sets the value of the first entry with the specified key in the NameObjectCollectionBase instance, if found; otherwise, adds an entry with the specified key and value into the NameObjectCollectionBase instance. (Inherited from NameObjectCollectionBase.) |
![]() | Clear | Clears this ConfigurationSectionCollection object. |
![]() | CopyTo | Copies this ConfigurationSectionCollection object to an array. |
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | Get(Int32) | Gets the specified ConfigurationSection object contained in this ConfigurationSectionCollection object. |
![]() | Get(String) | Gets the specified ConfigurationSection object contained in this ConfigurationSectionCollection object. |
![]() | GetEnumerator | Gets an enumerator that can iterate through this ConfigurationSectionCollection object. (Overrides NameObjectCollectionBase::GetEnumerator().) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetKey | Gets the key of the specified ConfigurationSection object contained in this ConfigurationSectionCollection object. |
![]() | GetObjectData | Used by the system during serialization. (Overrides NameObjectCollectionBase::GetObjectData(SerializationInfo, StreamingContext).) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | OnDeserialization | Implements the ISerializable interface and raises the deserialization event when the deserialization is complete. (Inherited from NameObjectCollectionBase.) |
![]() | Remove | Removes the specified ConfigurationSection object from this ConfigurationSectionCollection object. |
![]() | RemoveAt | Removes the specified ConfigurationSection object from this ConfigurationSectionCollection object. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | ICollection::CopyTo | Copies the entire NameObjectCollectionBase to a compatible one-dimensional Array, starting at the specified index of the target array. (Inherited from NameObjectCollectionBase.) |
![]() ![]() | ICollection::IsSynchronized | Gets a value indicating whether access to the NameObjectCollectionBase object is synchronized (thread safe). (Inherited from NameObjectCollectionBase.) |
![]() ![]() | ICollection::SyncRoot | Gets an object that can be used to synchronize access to the NameObjectCollectionBase object. (Inherited from NameObjectCollectionBase.) |
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>
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.

