ApplicationSettingsBase.Context Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the application settings context associated with the settings group.
public:
virtual property System::Configuration::SettingsContext ^ Context { System::Configuration::SettingsContext ^ get(); };
[System.ComponentModel.Browsable(false)]
public override System.Configuration.SettingsContext Context { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Context : System.Configuration.SettingsContext
Public Overrides ReadOnly Property Context As SettingsContext
Property Value
A SettingsContext associated with the settings group.
- Attributes
Remarks
Each settings wrapper class derived from ApplicationSettingsBase has a context associated with it. The context is passed to the settings provider for each property to identify how the property is used. Context therefore acts as a hint to help the settings provider determine how best to persist the associated application settings values.
In contrast, the SettingsKey property enables the settings provider to disambiguate multiple instances of the same wrapper class.