This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,63 @@
using System;
using System.Xml;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Provides key/value pair configuration information from a configuration section.</summary>
// Token: 0x020003BD RID: 957
[Token(Token = "0x20003BD")]
public class DictionarySectionHandler : IConfigurationSectionHandler
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.DictionarySectionHandler" /> class.</summary>
// Token: 0x06001949 RID: 6473 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001949")]
[Address(RVA = "0x2F3FEC0", Offset = "0x2F3EEC0", VA = "0x182F3FEC0")]
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: 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;
}
}
/// <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: 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;
}
}
/// <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: 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;
}
}
}