using System;
using System.Xml;
using Cpp2IlInjected;
namespace System.Configuration
{
/// Provides key/value pair configuration information from a configuration section.
// Token: 0x020003C1 RID: 961
[Token(Token = "0x20003C1")]
public class DictionarySectionHandler : IConfigurationSectionHandler
{
/// Initializes a new instance of the class.
// Token: 0x06001960 RID: 6496 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001960")]
[Address(RVA = "0x28A5400", Offset = "0x28A4200", VA = "0x1828A5400")]
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: 0x170005AF RID: 1455
// (get) Token: 0x06001961 RID: 6497 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005AF")]
protected virtual string KeyAttributeName
{
[Token(Token = "0x6001961")]
[Address(RVA = "0x28A5430", Offset = "0x28A4230", VA = "0x1828A5430", 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: 0x170005B0 RID: 1456
// (get) Token: 0x06001962 RID: 6498 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170005B0")]
protected virtual string ValueAttributeName
{
[Token(Token = "0x6001962")]
[Address(RVA = "0x28A5460", Offset = "0x28A4260", VA = "0x1828A5460", 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: 0x06001963 RID: 6499 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001963")]
[Address(RVA = "0x28A53D0", Offset = "0x28A41D0", VA = "0x1828A53D0", Slot = "7")]
public virtual object Create(object parent, object context, XmlNode section)
{
return null;
}
}
}