<PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0-rc.1.20451.14" />

SettingElement

public sealed class SettingElement : ConfigurationElement
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 { private static readonly ConfigurationProperty s_propName = new ConfigurationProperty("name", typeof(string), "", ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey); private static readonly ConfigurationProperty s_propSerializeAs = new ConfigurationProperty("serializeAs", typeof(SettingsSerializeAs), SettingsSerializeAs.String, ConfigurationPropertyOptions.IsRequired); private static readonly ConfigurationProperty s_propValue = new ConfigurationProperty("value", typeof(SettingValueElement), null, ConfigurationPropertyOptions.IsRequired); private static readonly ConfigurationPropertyCollection s_properties = new ConfigurationPropertyCollection { s_propName, s_propSerializeAs, s_propValue }; internal string Key => Name; protected internal override ConfigurationPropertyCollection Properties => s_properties; [ConfigurationProperty("name", IsRequired = true, IsKey = true, DefaultValue = "")] public string Name { get { return (string)base[s_propName]; } set { base[s_propName] = value; } } [ConfigurationProperty("serializeAs", IsRequired = true, DefaultValue = SettingsSerializeAs.String)] public SettingsSerializeAs SerializeAs { get { return (SettingsSerializeAs)base[s_propSerializeAs]; } set { base[s_propSerializeAs] = value; } } [ConfigurationProperty("value", IsRequired = true, DefaultValue = null)] public SettingValueElement Value { get { return (SettingValueElement)base[s_propValue]; } set { base[s_propValue] = value; } } public SettingElement() { } public SettingElement(string name, SettingsSerializeAs serializeAs) : this() { Name = name; SerializeAs = serializeAs; } public override bool Equals(object settings) { SettingElement settingElement = settings as SettingElement; if (settingElement != null && base.Equals(settings)) return object.Equals(settingElement.Value, Value); return false; } public override int GetHashCode() { return base.GetHashCode() ^ Value.GetHashCode(); } } }