This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,48 @@
using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Diagnostics.Tracing
{
/// <summary>The exception that is thrown when an error occurs during event tracing for Windows (ETW).</summary>
// Token: 0x020006A1 RID: 1697
[Token(Token = "0x20006A1")]
[Serializable]
public class EventSourceException : Exception
{
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceException" /> class.</summary>
// Token: 0x06003211 RID: 12817 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6003211")]
[Address(RVA = "0x1E930E0", Offset = "0x1E91EE0", VA = "0x181E930E0")]
public EventSourceException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
/// <param name="innerException">The exception that is the cause of the current exception, or <see langword="null" /> if no inner exception is specified.</param>
// Token: 0x06003212 RID: 12818 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6003212")]
[Address(RVA = "0x1E93060", Offset = "0x1E91E60", VA = "0x181E93060")]
public EventSourceException(string message, Exception innerException)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceException" /> class with serialized data.</summary>
/// <param name="info">The object that holds the serialized object data.</param>
/// <param name="context">The contextual information about the source or destination.</param>
// Token: 0x06003213 RID: 12819 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6003213")]
[Address(RVA = "0x1E92FE0", Offset = "0x1E91DE0", VA = "0x181E92FE0")]
protected EventSourceException(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x06003214 RID: 12820 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6003214")]
[Address(RVA = "0x1E92F60", Offset = "0x1E91D60", VA = "0x181E92F60")]
internal EventSourceException(Exception innerException)
{
}
}
}