using System; using System.Xml; using Cpp2IlInjected; namespace System.Configuration { /// Provides name/value-pair configuration information from a configuration section. // Token: 0x020003CA RID: 970 [Token(Token = "0x20003CA")] public class NameValueSectionHandler : IConfigurationSectionHandler { /// Initializes a new instance of the class. // Token: 0x06001983 RID: 6531 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6001983")] [Address(RVA = "0x28A70B0", Offset = "0x28A5EB0", VA = "0x1828A70B0")] public NameValueSectionHandler() { } /// Gets the XML attribute name to use as the key in a key/value pair. /// A value containing the name of the key attribute. // Token: 0x170005B8 RID: 1464 // (get) Token: 0x06001984 RID: 6532 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170005B8")] protected virtual string KeyAttributeName { [Token(Token = "0x6001984")] [Address(RVA = "0x28A70E0", Offset = "0x28A5EE0", VA = "0x1828A70E0", Slot = "5")] get { return null; } } /// Gets the XML attribute name to use as the value in a key/value pair. /// A value containing the name of the value attribute. // Token: 0x170005B9 RID: 1465 // (get) Token: 0x06001985 RID: 6533 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170005B9")] protected virtual string ValueAttributeName { [Token(Token = "0x6001985")] [Address(RVA = "0x28A7110", Offset = "0x28A5F10", VA = "0x1828A7110", 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: 0x06001986 RID: 6534 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001986")] [Address(RVA = "0x28A7080", Offset = "0x28A5E80", VA = "0x1828A7080", Slot = "4")] public object Create(object parent, object context, XmlNode section) { return null; } } }