This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,63 @@
using System;
using System.Xml;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Provides name/value-pair configuration information from a configuration section.</summary>
// Token: 0x020003CA RID: 970
[Token(Token = "0x20003CA")]
public class NameValueSectionHandler : IConfigurationSectionHandler
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.NameValueSectionHandler" /> class.</summary>
// Token: 0x06001983 RID: 6531 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001983")]
[Address(RVA = "0x28A70B0", Offset = "0x28A5EB0", VA = "0x1828A70B0")]
public NameValueSectionHandler()
{
}
/// <summary>Gets the XML attribute name to use as the key in a key/value pair.</summary>
/// <returns>A <see cref="T:System.String" /> value containing the name of the key attribute.</returns>
// 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;
}
}
/// <summary>Gets the XML attribute name to use as the value in a key/value pair.</summary>
/// <returns>A <see cref="T:System.String" /> value containing the name of the value attribute.</returns>
// 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;
}
}
/// <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: 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;
}
}
}