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: 0x020003C5 RID: 965
|
|
[Token(Token = "0x20003C5")]
|
|
public class NameValueFileSectionHandler : IConfigurationSectionHandler
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.NameValueFileSectionHandler" /> class.</summary>
|
|
// Token: 0x0600196A RID: 6506 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600196A")]
|
|
[Address(RVA = "0x2F41B10", Offset = "0x2F40B10", VA = "0x182F41B10")]
|
|
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: 0x0600196B RID: 6507 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600196B")]
|
|
[Address(RVA = "0x2F41AE0", Offset = "0x2F40AE0", VA = "0x182F41AE0", Slot = "4")]
|
|
public object Create(object parent, object configContext, XmlNode section)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|