SettingsBase Class
Provides the base class used to support user property settings.
Assembly: System (in System.dll)
System.Configuration::SettingsBase
System.Configuration::ApplicationSettingsBase
System.Web.Profile::ProfileBase
| Name | Description | |
|---|---|---|
![]() | SettingsBase() | Initializes a new instance of the SettingsBase class. |
| Name | Description | |
|---|---|---|
![]() | Context | Gets the associated settings context. |
![]() | IsSynchronized | Gets a value indicating whether access to the object is synchronized (thread safe). |
![]() | Item[String^] | Gets or sets the value of the specified settings property. |
![]() | Properties | Gets the collection of settings properties. |
![]() | PropertyValues | Gets a collection of settings property values. |
![]() | Providers | Gets a collection of settings providers. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | Initialize(SettingsContext^, SettingsPropertyCollection^, SettingsProviderCollection^) | Initializes internal properties used by SettingsBase object. |
![]() | MemberwiseClone() | |
![]() | Save() | Stores the current values of the settings properties. |
![]() ![]() | Synchronized(SettingsBase^) | Provides a SettingsBase class that is synchronized (thread safe). |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
ASP.NET Web Forms and Windows Forms both use the same configuration settings infrastructure to support user settings. User settings within ASP.NET are often referred to as ASP.NET Profile. The settings infrastructure includes the SettingsBase base class, the SettingsProperty class, the SettingsPropertyValue class, the SettingsContext class, the SettingsProvider class, and the SettingAttribute
class.
The Settings base classes provide only a common infrastructure for defining and persisting settings properties. Depending on how these base classes are derived and their run-time environment, the settings API can provide different levels of functionality. For example, ASP.NET Profile uses the settings base classes to provide per-user settings that are saved and loaded according to request semantics.
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.



