System.Configuration.SettingElement
Represents a simplified configuration element used for updating elements in the configuration. This class cannot be inherited.
namespace System.Configuration
{
public sealed class SettingElement : ConfigurationElement
{
public string Name { get; set; }
public SettingsSerializeAs SerializeAs { get; set; }
public SettingValueElement Value { get; set; }
public SettingElement();
public SettingElement(string name, SettingsSerializeAs serializeAs);
}
}