System.Configuration.SettingElementCollection
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();
}
}