43 lines
1.8 KiB
C#
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: 0x020003AF RID: 943
|
|
[Token(Token = "0x20003AF")]
|
|
[Obsolete]
|
|
public class DiagnosticsConfigurationHandler : IConfigurationSectionHandler
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.DiagnosticsConfigurationHandler" /> class.</summary>
|
|
// Token: 0x060018FF RID: 6399 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60018FF")]
|
|
[Address(RVA = "0x28A53A0", Offset = "0x28A41A0", VA = "0x1828A53A0")]
|
|
public DiagnosticsConfigurationHandler()
|
|
{
|
|
}
|
|
|
|
/// <summary>Parses the configuration settings for the <system.diagnostics> 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: 0x06001900 RID: 6400 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001900")]
|
|
[Address(RVA = "0x28A5370", Offset = "0x28A4170", VA = "0x1828A5370", Slot = "5")]
|
|
public virtual object Create(object parent, object configContext, XmlNode section)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|