Files
Aug2021-Cpp2IL-Dump/System/Configuration/DictionarySectionHandler.cs
T
2026-04-10 22:50:51 +02:00

64 lines
2.3 KiB
C#

using System;
using System.Xml;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Provides key/value pair configuration information from a configuration section.</summary>
// Token: 0x020003C1 RID: 961
[Token(Token = "0x20003C1")]
public class DictionarySectionHandler : IConfigurationSectionHandler
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.DictionarySectionHandler" /> class.</summary>
// Token: 0x06001960 RID: 6496 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001960")]
[Address(RVA = "0x28A5400", Offset = "0x28A4200", VA = "0x1828A5400")]
public DictionarySectionHandler()
{
}
/// <summary>Gets the XML attribute name to use as the key in a key/value pair.</summary>
/// <returns>A string value containing the name of the key attribute.</returns>
// 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;
}
}
/// <summary>Gets the XML attribute name to use as the value in a key/value pair.</summary>
/// <returns>A string value containing the name of the value attribute.</returns>
// 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;
}
}
/// <summary>Creates a new configuration handler and adds it to the section-handler collection based on the specified parameters.</summary>
/// <param name="parent">Parent object.</param>
/// <param name="context">Configuration context object.</param>
/// <param name="section">Section XML node.</param>
/// <returns>A configuration object.</returns>
// 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;
}
}
}