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: 0x020003C0 RID: 960 [Token(Token = "0x20003C0")] public class IgnoreSectionHandler : IConfigurationSectionHandler { /// Initializes a new instance of the class. // Token: 0x06001953 RID: 6483 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001953")] [Address(RVA = "0x2F40FB0", Offset = "0x2F3FFB0", VA = "0x182F40FB0")] 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: 0x06001954 RID: 6484 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001954")] [Address(RVA = "0x2F40F80", Offset = "0x2F3FF80", VA = "0x182F40F80", Slot = "5")] public virtual object Create(object parent, object configContext, XmlNode section) { return null; } } }