mscorlib(4.0.0.0) API with additions
SettingsProvider.cs
1 using System.Configuration.Provider;
2 
3 namespace System.Configuration
4 {
6  public abstract class SettingsProvider : ProviderBase
7  {
10  public abstract string ApplicationName
11  {
12  get;
13  set;
14  }
15 
21 
25  public abstract void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection collection);
26  }
27 }
abstract SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection collection)
Returns the collection of settings property values for the specified application instance and setting...
abstract void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection collection)
Sets the values of the specified group of property settings.
Definition: __Canon.cs:3
Contains a collection of settings property values that map T:System.Configuration....
Contains a collection of T:System.Configuration.SettingsProperty objects.
abstract string ApplicationName
Gets or sets the name of the currently running application.
Provides contextual information that the provider can use when persisting settings.
Acts as a base class for deriving custom settings providers in the application settings architecture.