using System; using System.Collections.Specialized; using Cpp2IlInjected; namespace System.Configuration { /// Provides runtime versions 1.0 and 1.1 support for reading configuration sections and common configuration settings. // Token: 0x020003BE RID: 958 [Token(Token = "0x20003BE")] public sealed class ConfigurationSettings { // Token: 0x06001955 RID: 6485 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001955")] [Address(RVA = "0x289F1D0", Offset = "0x289DFD0", VA = "0x18289F1D0")] internal ConfigurationSettings() { } /// Gets a read-only of the application settings section of the configuration file. /// A read-only of the application settings section from the configuration file. // Token: 0x170005AB RID: 1451 // (get) Token: 0x06001956 RID: 6486 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170005AB")] public static NameValueCollection AppSettings { [Token(Token = "0x6001956")] [Address(RVA = "0x289F200", Offset = "0x289E000", VA = "0x18289F200")] get { return null; } } /// Returns the object for the passed configuration section name and path. /// A configuration name and path, such as "system.net/settings". /// The object for the passed configuration section name and path. /// /// The class provides backward compatibility only. You should use the class or class instead. /// Unable to retrieve the requested section. // Token: 0x06001957 RID: 6487 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001957")] [Address(RVA = "0x289F1A0", Offset = "0x289DFA0", VA = "0x18289F1A0")] [Obsolete] public static object GetConfig(string sectionName) { return null; } } }