<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.6.0-preview.19073.11" />

ClientSettingsSection

Represents a group of user-scoped application settings in a configuration file.
namespace System.Configuration { public sealed class ClientSettingsSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propSettings; protected internal override ConfigurationPropertyCollection Properties => _properties; [ConfigurationProperty("", IsDefaultCollection = true)] public SettingElementCollection Settings { get { return (SettingElementCollection)base[_propSettings]; } } static ClientSettingsSection() { _propSettings = new ConfigurationProperty(null, typeof(SettingElementCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); _properties = new ConfigurationPropertyCollection(); _properties.Add(_propSettings); } } }