using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Configuration { /// Provides standard configuration methods. // Token: 0x020003BE RID: 958 [Token(Token = "0x20003BE")] [ComVisible(false)] public interface IConfigurationSystem { /// Gets the specified configuration. /// The configuration key. /// The object representing the configuration. // Token: 0x0600194D RID: 6477 [Token(Token = "0x600194D")] [Address(Slot = "0")] object GetConfig(string configKey); /// Used for initialization. // Token: 0x0600194E RID: 6478 [Token(Token = "0x600194E")] [Address(Slot = "1")] void Init(); } }