10 instantiations of SettingsPropertyCollection
System.Configuration.ConfigurationManager (10)
System\Configuration\ApplicationSettingsBase.cs (4)
138_settings = new SettingsPropertyCollection(); 145_settings = new SettingsPropertyCollection(); 557_settings ??= new SettingsPropertyCollection(); 668SettingsPropertyCollection properties = new SettingsPropertyCollection();
System\Configuration\LocalFileSettingsProvider.cs (4)
221SettingsPropertyCollection local = new SettingsPropertyCollection(); 222SettingsPropertyCollection roaming = new SettingsPropertyCollection(); 259SettingsPropertyCollection properties = new SettingsPropertyCollection(); 496SettingsPropertyCollection upgradeProperties = new SettingsPropertyCollection();
System\Configuration\SettingsBase.cs (1)
154SettingsPropertyCollection ppc = new SettingsPropertyCollection();
System\Configuration\SettingsPropertyCollection.cs (1)
72return new SettingsPropertyCollection(_hashtable);
19 references to SettingsPropertyCollection
System (1)
src\libraries\shims\System\ref\System.cs (1)
455[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Configuration.SettingsPropertyCollection))]
System.Configuration.ConfigurationManager (18)
System\Configuration\ApplicationSettingsBase.cs (4)
22private SettingsPropertyCollection _settings; 126public override SettingsPropertyCollection Properties 666private SettingsPropertyCollection GetPropertiesForProvider(SettingsProvider provider) 668SettingsPropertyCollection properties = new SettingsPropertyCollection();
System\Configuration\IApplicationSettingsProvider.cs (1)
26void Upgrade(SettingsContext context, SettingsPropertyCollection properties);
System\Configuration\LocalFileSettingsProvider.cs (8)
62public override SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection properties) 217public void Upgrade(SettingsContext context, SettingsPropertyCollection properties) 221SettingsPropertyCollection local = new SettingsPropertyCollection(); 222SettingsPropertyCollection roaming = new SettingsPropertyCollection(); 259SettingsPropertyCollection properties = new SettingsPropertyCollection(); 374private SettingsPropertyValueCollection GetSettingValuesFromFile(string configFileName, string sectionName, bool userScoped, SettingsPropertyCollection properties) 489private void Upgrade(SettingsContext context, SettingsPropertyCollection properties, bool isRoaming) 496SettingsPropertyCollection upgradeProperties = new SettingsPropertyCollection();
System\Configuration\SettingsBase.cs (4)
10private SettingsPropertyCollection _properties; 100SettingsPropertyCollection properties, 147public virtual SettingsPropertyCollection Properties { get { return _properties; } } 154SettingsPropertyCollection ppc = new SettingsPropertyCollection();
System\Configuration\SettingsProvider.cs (1)
10public abstract SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection collection);