System.Configuration.SettingElementCollection
Contains a collection of SettingElement objects. This class cannot be inherited.
namespace System.Configuration
{
public sealed class SettingElementCollection : ConfigurationElementCollection
{
public SettingElement Get(string elementKey);
public void Add(SettingElement element);
public void Remove(SettingElement element);
public void Clear();
public SettingElementCollection();
}
}