4 instantiations of SettingsContext
System.Configuration.ConfigurationManager (4)
System\Configuration\ApplicationSettingsBase.cs (4)
103_context = new SettingsContext(); 110_context = new SettingsContext(); 549_context ??= new SettingsContext(); 610_context ??= new SettingsContext();
18 references to SettingsContext
System (1)
src\libraries\shims\System\ref\System.cs (1)
446[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Configuration.SettingsContext))]
System.Configuration.ConfigurationManager (17)
System\Configuration\ApplicationSettingsBase.cs (2)
20private SettingsContext _context; 91public override SettingsContext Context
System\Configuration\IApplicationSettingsProvider.cs (3)
15SettingsPropertyValue GetPreviousVersion(SettingsContext context, SettingsProperty property); 20void Reset(SettingsContext context); 26void Upgrade(SettingsContext context, SettingsPropertyCollection properties);
System\Configuration\LocalFileSettingsProvider.cs (7)
62public override SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection properties) 149public override void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection values) 203public void Reset(SettingsContext context) 217public void Upgrade(SettingsContext context, SettingsPropertyCollection properties) 252public SettingsPropertyValue GetPreviousVersion(SettingsContext context, SettingsProperty property) 353private static string GetSectionName(SettingsContext context) 489private void Upgrade(SettingsContext context, SettingsPropertyCollection properties, bool isRoaming)
System\Configuration\SettingsBase.cs (3)
13private SettingsContext _context; 99SettingsContext context, 150public virtual SettingsContext Context { get { return _context; } }
System\Configuration\SettingsProvider.cs (2)
10public abstract SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection collection); 11public abstract void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection collection);