10 instantiations of SettingsPropertyCollection
System.Configuration.ConfigurationManager (10)
System\Configuration\ApplicationSettingsBase.cs (4)
135
_settings = new
SettingsPropertyCollection
();
142
_settings = new
SettingsPropertyCollection
();
554
_settings ??= new
SettingsPropertyCollection
();
665
SettingsPropertyCollection properties = new
SettingsPropertyCollection
();
System\Configuration\LocalFileSettingsProvider.cs (4)
221
SettingsPropertyCollection local = new
SettingsPropertyCollection
();
222
SettingsPropertyCollection roaming = new
SettingsPropertyCollection
();
259
SettingsPropertyCollection properties = new
SettingsPropertyCollection
();
496
SettingsPropertyCollection upgradeProperties = new
SettingsPropertyCollection
();
System\Configuration\SettingsBase.cs (1)
154
SettingsPropertyCollection ppc = new
SettingsPropertyCollection
();
System\Configuration\SettingsPropertyCollection.cs (1)
72
return 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)
22
private
SettingsPropertyCollection
_settings;
123
public override
SettingsPropertyCollection
Properties
663
private
SettingsPropertyCollection
GetPropertiesForProvider(SettingsProvider provider)
665
SettingsPropertyCollection
properties = new SettingsPropertyCollection();
System\Configuration\IApplicationSettingsProvider.cs (1)
26
void Upgrade(SettingsContext context,
SettingsPropertyCollection
properties);
System\Configuration\LocalFileSettingsProvider.cs (8)
62
public override SettingsPropertyValueCollection GetPropertyValues(SettingsContext context,
SettingsPropertyCollection
properties)
217
public void Upgrade(SettingsContext context,
SettingsPropertyCollection
properties)
221
SettingsPropertyCollection
local = new SettingsPropertyCollection();
222
SettingsPropertyCollection
roaming = new SettingsPropertyCollection();
259
SettingsPropertyCollection
properties = new SettingsPropertyCollection();
374
private SettingsPropertyValueCollection GetSettingValuesFromFile(string configFileName, string sectionName, bool userScoped,
SettingsPropertyCollection
properties)
489
private void Upgrade(SettingsContext context,
SettingsPropertyCollection
properties, bool isRoaming)
496
SettingsPropertyCollection
upgradeProperties = new SettingsPropertyCollection();
System\Configuration\SettingsBase.cs (4)
10
private
SettingsPropertyCollection
_properties;
100
SettingsPropertyCollection
properties,
147
public virtual
SettingsPropertyCollection
Properties { get { return _properties; } }
154
SettingsPropertyCollection
ppc = new SettingsPropertyCollection();
System\Configuration\SettingsProvider.cs (1)
10
public abstract SettingsPropertyValueCollection GetPropertyValues(SettingsContext context,
SettingsPropertyCollection
collection);