using System; using Cpp2IlInjected; namespace System.Configuration { /// Provides a method for reading values of a particular type from the configuration. // Token: 0x020003B5 RID: 949 [Token(Token = "0x20003B5")] public class AppSettingsReader { /// Initializes a new instance of the class. // Token: 0x0600191D RID: 6429 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600191D")] [Address(RVA = "0x2F38420", Offset = "0x2F37420", VA = "0x182F38420")] public AppSettingsReader() { } /// Gets the value for a specified key from the property and returns an object of the specified type containing the value from the configuration. /// The key for which to get the value. /// The type of the object to return. /// The value of the specified key. /// /// is . /// -or- /// is . /// /// does not exist in the configuration section. /// -or- /// The value in the configuration section for is not of type . // Token: 0x0600191E RID: 6430 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600191E")] [Address(RVA = "0x2F383F0", Offset = "0x2F373F0", VA = "0x182F383F0")] public object GetValue(string key, Type type) { return null; } } }