using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Configuration { /// Provides standard configuration methods. // Token: 0x020003C2 RID: 962 [Token(Token = "0x20003C2")] [ComVisible(false)] public interface IConfigurationSystem { /// Gets the specified configuration. /// The configuration key. /// The object representing the configuration. // Token: 0x06001964 RID: 6500 [Token(Token = "0x6001964")] [Address(Slot = "0")] object GetConfig(string configKey); /// Used for initialization. // Token: 0x06001965 RID: 6501 [Token(Token = "0x6001965")] [Address(Slot = "1")] void Init(); } }