37 lines
1.8 KiB
C#
37 lines
1.8 KiB
C#
using System;
|
|
using System.Xml;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Configuration
|
|
{
|
|
/// <summary>Provides access to a configuration file. This type supports the .NET Framework configuration infrastructure and is not intended to be used directly from your code.</summary>
|
|
// Token: 0x020003C9 RID: 969
|
|
[Token(Token = "0x20003C9")]
|
|
public class NameValueFileSectionHandler : IConfigurationSectionHandler
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.NameValueFileSectionHandler" /> class.</summary>
|
|
// Token: 0x06001981 RID: 6529 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6001981")]
|
|
[Address(RVA = "0x28A7050", Offset = "0x28A5E50", VA = "0x1828A7050")]
|
|
public NameValueFileSectionHandler()
|
|
{
|
|
}
|
|
|
|
/// <summary>Creates a new configuration handler and adds it to the section-handler collection based on the specified parameters.</summary>
|
|
/// <param name="parent">The parent object.</param>
|
|
/// <param name="configContext">The configuration context object.</param>
|
|
/// <param name="section">The section XML node.</param>
|
|
/// <returns>A configuration object.</returns>
|
|
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">The file specified in the <see langword="file" /> attribute of <paramref name="section" /> exists but cannot be loaded.
|
|
/// -or-
|
|
/// The <see langword="name" /> attribute of <paramref name="section" /> does not match the root element of the file specified in the <see langword="file" /> attribute.</exception>
|
|
// Token: 0x06001982 RID: 6530 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001982")]
|
|
[Address(RVA = "0x28A7020", Offset = "0x28A5E20", VA = "0x1828A7020", Slot = "4")]
|
|
public object Create(object parent, object configContext, XmlNode section)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|