mscorlib(4.0.0.0) API with additions
ConfigurationSettings.cs
2 
3 namespace System.Configuration
4 {
6  public sealed class ConfigurationSettings
7  {
10  [Obsolete("This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings")]
11  public static NameValueCollection AppSettings
12  {
13  get
14  {
15  return ConfigurationManager.AppSettings;
16  }
17  }
18 
19  private ConfigurationSettings()
20  {
21  }
22 
27  [Obsolete("This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.GetSection")]
28  public static object GetConfig(string sectionName)
29  {
30  return ConfigurationManager.GetSection(sectionName);
31  }
32  }
33 }
static object GetConfig(string sectionName)
Returns the T:System.Configuration.ConfigurationSection object for the passed configuration section n...
Represents a collection of associated T:System.String keys and T:System.String values that can be acc...
Definition: __Canon.cs:3
static NameValueCollection AppSettings
Gets a read-only T:System.Collections.Specialized.NameValueCollection of the application settings sec...
Provides runtime versions 1.0 and 1.1 support for reading configuration sections and common configura...