Files
27Aug2021-Cpp2IL-Dump/System/Diagnostics/DiagnosticsConfigurationHandler.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

43 lines
1.8 KiB
C#

using System;
using System.Configuration;
using System.Xml;
using Cpp2IlInjected;
namespace System.Diagnostics
{
/// <summary>Handles the diagnostics section of configuration files.</summary>
// Token: 0x020003AB RID: 939
[Token(Token = "0x20003AB")]
[Obsolete]
public class DiagnosticsConfigurationHandler : IConfigurationSectionHandler
{
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DiagnosticsConfigurationHandler" /> class.</summary>
// Token: 0x060018E8 RID: 6376 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60018E8")]
[Address(RVA = "0x2F3FE60", Offset = "0x2F3EE60", VA = "0x182F3FE60")]
public DiagnosticsConfigurationHandler()
{
}
/// <summary>Parses the configuration settings for the &lt;system.diagnostics&gt; Element section of configuration files.</summary>
/// <param name="parent">The object inherited from the parent path</param>
/// <param name="configContext">Reserved. Used in ASP.NET to convey the virtual path of the configuration being evaluated.</param>
/// <param name="section">The root XML node at the section to handle.</param>
/// <returns>A new configuration object, in the form of a <see cref="T:System.Collections.Hashtable" />.</returns>
/// <exception cref="T:System.Configuration.ConfigurationErrorsException">Switches could not be found.
/// -or-
/// Assert could not be found.
/// -or-
/// Trace could not be found.
/// -or-
/// Performance counters could not be found.</exception>
// Token: 0x060018E9 RID: 6377 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60018E9")]
[Address(RVA = "0x2F3FE30", Offset = "0x2F3EE30", VA = "0x182F3FE30", Slot = "5")]
public virtual object Create(object parent, object configContext, XmlNode section)
{
return null;
}
}
}