This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,33 @@
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: 0x020003C0 RID: 960
[Token(Token = "0x20003C0")]
public class IgnoreSectionHandler : IConfigurationSectionHandler
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.IgnoreSectionHandler" /> class.</summary>
// Token: 0x06001953 RID: 6483 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001953")]
[Address(RVA = "0x2F40FB0", Offset = "0x2F3FFB0", VA = "0x182F40FB0")]
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: 0x06001954 RID: 6484 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001954")]
[Address(RVA = "0x2F40F80", Offset = "0x2F3FF80", VA = "0x182F40F80", Slot = "5")]
public virtual object Create(object parent, object configContext, XmlNode section)
{
return null;
}
}
}