LocalFileSettingsProvider Class
Provides persistence for application settings classes.
System.Configuration.Provider::ProviderBase
System.Configuration::SettingsProvider
System.Configuration::LocalFileSettingsProvider
Assembly: System (in System.dll)
The LocalFileSettingsProvider type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | LocalFileSettingsProvider | Initializes a new instance of the LocalFileSettingsProvider class. |
| Name | Description | |
|---|---|---|
![]() | ApplicationName | Gets or sets the name of the currently running application. (Overrides SettingsProvider::ApplicationName.) |
![]() | Description | Gets a brief, friendly description suitable for display in administrative tools or other user interfaces (UIs). (Inherited from ProviderBase.) |
![]() | Name | Gets the friendly name used to refer to the provider during configuration. (Inherited from ProviderBase.) |
| 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 a hash function for a particular type. (Inherited from Object.) |
![]() | GetPreviousVersion | Returns the value of the named settings property for the previous version of the same application. |
![]() | GetPropertyValues | Returns the collection of setting property values for the specified application instance and settings property group. (Overrides SettingsProvider::GetPropertyValues(SettingsContext, SettingsPropertyCollection).) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | Initialize | Initializes the provider. (Overrides ProviderBase::Initialize(String, NameValueCollection).) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Reset | Resets all application settings properties associated with the specified application to their default values. |
![]() | SetPropertyValues | Sets the values of the specified group of property settings. (Overrides SettingsProvider::SetPropertyValues(SettingsContext, SettingsPropertyValueCollection).) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | Upgrade | Attempts to migrate previous user-scoped settings from a previous version of the same application. |
Setting providers define a mechanism for storing configuration data used in the application settings architecture. The .NET Framework contains a single default settings provider, LocalFileSettingsProvider, which stores configuration data to the local file system. An application settings property or group of properties are associated to a specific settings provider through the use of the SettingsProviderAttribute.
Typically, the client program does not explicitly access this class; rather, the application settings architecture automatically invokes the appropriate settings provider when its services are required. For example, many of the members of ApplicationSettingsBase delegate their work to the associated settings provider.
LocalFileSettingsProvider persists settings to configuration files that have the extension .config. The contents of configuration files are structured as XML documents. Depending on whether the setting is scoped at either the application-level or user-level, the configuration data is stored as elements within an <applicationSettings> or a <userSettings> section group, respectively. Each of these section groups is represented by a corresponding AppSettingsSection or ClientSettingsSection, respectively. Each section object is owned and administered by a configuration section handler, which is an object of type IConfigurationSectionHandler.
Application-scoped settings and the default user-scoped settings are stored in a file named application.exe.config, which is created in the same directory as the executable file. Application configuration settings are read-only. Specific user data is stored in a file named user.config, stored under the user's home directory. If roaming profiles are enabled, two versions of the user configuration file could exist. In such a case, the entries in the roaming version take precedence over duplicated entries in the local user configuration file.
For more information about application settings, see Application Settings for Windows Forms.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
