using System; using System.Xml; using Cpp2IlInjected; namespace System.Configuration { /// Provides key/value pair configuration information from a configuration section. // Token: 0x020003BD RID: 957 [Token(Token = "0x20003BD")] public class DictionarySectionHandler : IConfigurationSectionHandler { /// Initializes a new instance of the class. // Token: 0x06001949 RID: 6473 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001949")] [Address(RVA = "0x2F3FEC0", Offset = "0x2F3EEC0", VA = "0x182F3FEC0")] public DictionarySectionHandler() { } /// Gets the XML attribute name to use as the key in a key/value pair. /// A string value containing the name of the key attribute. // Token: 0x170005AB RID: 1451 // (get) Token: 0x0600194A RID: 6474 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170005AB")] protected virtual string KeyAttributeName { [Token(Token = "0x600194A")] [Address(RVA = "0x2F3FEF0", Offset = "0x2F3EEF0", VA = "0x182F3FEF0", Slot = "5")] get { return null; } } /// Gets the XML attribute name to use as the value in a key/value pair. /// A string value containing the name of the value attribute. // Token: 0x170005AC RID: 1452 // (get) Token: 0x0600194B RID: 6475 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170005AC")] protected virtual string ValueAttributeName { [Token(Token = "0x600194B")] [Address(RVA = "0x2F3FF20", Offset = "0x2F3EF20", VA = "0x182F3FF20", Slot = "6")] get { return null; } } /// Creates a new configuration handler and adds it to the section-handler collection based on the specified parameters. /// Parent object. /// Configuration context object. /// Section XML node. /// A configuration object. // Token: 0x0600194C RID: 6476 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600194C")] [Address(RVA = "0x2F3FE90", Offset = "0x2F3EE90", VA = "0x182F3FE90", Slot = "7")] public virtual object Create(object parent, object context, XmlNode section) { return null; } } }