using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Provides a method for reading values of a particular type from the configuration.
// Token: 0x020003B9 RID: 953
[Token(Token = "0x20003B9")]
public class AppSettingsReader
{
/// Initializes a new instance of the class.
// Token: 0x06001934 RID: 6452 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001934")]
[Address(RVA = "0x289D960", Offset = "0x289C760", VA = "0x18289D960")]
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: 0x06001935 RID: 6453 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001935")]
[Address(RVA = "0x289D930", Offset = "0x289C730", VA = "0x18289D930")]
public object GetValue(string key, Type type)
{
return null;
}
}
}