using System; using System.Xml; using Cpp2IlInjected; namespace System.Configuration { /// Provides a legacy section-handler definition for configuration sections that are not handled by the types. // Token: 0x020003C4 RID: 964 [Token(Token = "0x20003C4")] public class IgnoreSectionHandler : IConfigurationSectionHandler { /// Initializes a new instance of the class. // Token: 0x0600196A RID: 6506 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600196A")] [Address(RVA = "0x28A64F0", Offset = "0x28A52F0", VA = "0x1828A64F0")] public IgnoreSectionHandler() { } /// Creates a new configuration handler and adds the specified configuration object to the section-handler collection. /// The configuration settings in a corresponding parent configuration section. /// The virtual path for which the configuration section handler computes configuration values. Normally this parameter is reserved and is . /// An that contains the configuration information to be handled. Provides direct access to the XML contents of the configuration section. /// The created configuration handler object. // Token: 0x0600196B RID: 6507 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600196B")] [Address(RVA = "0x28A64C0", Offset = "0x28A52C0", VA = "0x1828A64C0", Slot = "5")] public virtual object Create(object parent, object configContext, XmlNode section) { return null; } } }