Files
Apr2020-Cpp2Il-Dump/System/Configuration/IgnoreSectionHandler.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

34 lines
1.7 KiB
C#

using System;
using System.Xml;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Provides a legacy section-handler definition for configuration sections that are not handled by the <see cref="N:System.Configuration" /> types.</summary>
// Token: 0x020003C4 RID: 964
[Token(Token = "0x20003C4")]
public class IgnoreSectionHandler : IConfigurationSectionHandler
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.IgnoreSectionHandler" /> class.</summary>
// Token: 0x0600196A RID: 6506 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600196A")]
[Address(RVA = "0x28A64F0", Offset = "0x28A52F0", VA = "0x1828A64F0")]
public IgnoreSectionHandler()
{
}
/// <summary>Creates a new configuration handler and adds the specified configuration object to the section-handler collection.</summary>
/// <param name="parent">The configuration settings in a corresponding parent configuration section.</param>
/// <param name="configContext">The virtual path for which the configuration section handler computes configuration values. Normally this parameter is reserved and is <see langword="null" />.</param>
/// <param name="section">An <see cref="T:System.Xml.XmlNode" /> that contains the configuration information to be handled. Provides direct access to the XML contents of the configuration section.</param>
/// <returns>The created configuration handler object.</returns>
// Token: 0x0600196B RID: 6507 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600196B")]
[Address(RVA = "0x28A64C0", Offset = "0x28A52C0", VA = "0x1828A64C0", Slot = "5")]
public virtual object Create(object parent, object configContext, XmlNode section)
{
return null;
}
}
}