using System;
using System.Xml;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Provides name/value-pair configuration information from a configuration section.
// Token: 0x020003C6 RID: 966
[Token(Token = "0x20003C6")]
public class NameValueSectionHandler : IConfigurationSectionHandler
{
/// Initializes a new instance of the class.
// Token: 0x0600196C RID: 6508 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600196C")]
[Address(RVA = "0x2F41B70", Offset = "0x2F40B70", VA = "0x182F41B70")]
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: 0x170005B4 RID: 1460
// (get) Token: 0x0600196D RID: 6509 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005B4")]
protected virtual string KeyAttributeName
{
[Token(Token = "0x600196D")]
[Address(RVA = "0x2F41BA0", Offset = "0x2F40BA0", VA = "0x182F41BA0", 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: 0x170005B5 RID: 1461
// (get) Token: 0x0600196E RID: 6510 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005B5")]
protected virtual string ValueAttributeName
{
[Token(Token = "0x600196E")]
[Address(RVA = "0x2F41BD0", Offset = "0x2F40BD0", VA = "0x182F41BD0", 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: 0x0600196F RID: 6511 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600196F")]
[Address(RVA = "0x2F41B40", Offset = "0x2F40B40", VA = "0x182F41B40", Slot = "4")]
public object Create(object parent, object context, XmlNode section)
{
return null;
}
}
}