using System; using System.Xml; using Cpp2IlInjected; namespace System.Configuration { /// Handles the access to certain configuration sections. // Token: 0x0200037C RID: 892 [Token(Token = "0x200037C")] public interface IConfigurationSectionHandler { /// Creates a configuration section handler. /// Parent object. /// Configuration context object. /// Section XML node. /// The created section handler object. // Token: 0x06001780 RID: 6016 [Token(Token = "0x6001780")] [Address(Slot = "0")] object Create(object parent, object configContext, XmlNode section); } }