This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,35 @@
using System;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Diagnostics.Tracing
{
/// <summary>Provides data for the <see cref="E:System.Diagnostics.Tracing.EventListener.EventSourceCreated" /> event.</summary>
// Token: 0x0200068C RID: 1676
[Token(Token = "0x200068C")]
public class EventSourceCreatedEventArgs : EventArgs
{
/// <summary>Get the event source that is attaching to the listener.</summary>
/// <returns>The event source that is attaching to the listener.</returns>
// Token: 0x170007A4 RID: 1956
// (set) Token: 0x060031A7 RID: 12711 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170007A4")]
internal EventSource EventSource
{
[Token(Token = "0x60031A7")]
[Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200")]
[CompilerGenerated]
set
{
}
}
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceCreatedEventArgs" /> class.</summary>
// Token: 0x060031A8 RID: 12712 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60031A8")]
[Address(RVA = "0x1E92F00", Offset = "0x1E91D00", VA = "0x181E92F00")]
public EventSourceCreatedEventArgs()
{
}
}
}