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,22 @@
using System;
using System.Xml;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Handles the access to certain configuration sections.</summary>
// Token: 0x0200037C RID: 892
[Token(Token = "0x200037C")]
public interface IConfigurationSectionHandler
{
/// <summary>Creates a configuration section handler.</summary>
/// <param name="parent">Parent object.</param>
/// <param name="configContext">Configuration context object.</param>
/// <param name="section">Section XML node.</param>
/// <returns>The created section handler object.</returns>
// Token: 0x06001780 RID: 6016
[Token(Token = "0x6001780")]
[Address(Slot = "0")]
object Create(object parent, object configContext, XmlNode section);
}
}