64 lines
2.4 KiB
C#
64 lines
2.4 KiB
C#
using System;
|
|
using System.Xml;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Configuration
|
|
{
|
|
/// <summary>Provides name/value-pair configuration information from a configuration section.</summary>
|
|
// Token: 0x020003C6 RID: 966
|
|
[Token(Token = "0x20003C6")]
|
|
public class NameValueSectionHandler : IConfigurationSectionHandler
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.NameValueSectionHandler" /> class.</summary>
|
|
// Token: 0x0600196C RID: 6508 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600196C")]
|
|
[Address(RVA = "0x2F41B70", Offset = "0x2F40B70", VA = "0x182F41B70")]
|
|
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: 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;
|
|
}
|
|
}
|
|
|
|
/// <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: 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;
|
|
}
|
|
}
|
|
|
|
/// <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: 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;
|
|
}
|
|
}
|
|
}
|