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

36 lines
1.2 KiB
C#

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: 0x020006AD RID: 1709
[Token(Token = "0x20006AD")]
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: 0x1700081C RID: 2076
// (set) Token: 0x060033C2 RID: 13250 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700081C")]
internal EventSource EventSource
{
[Token(Token = "0x60033C2")]
[Address(RVA = "0x415800", Offset = "0x414800", VA = "0x180415800")]
[CompilerGenerated]
set
{
}
}
/// <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Tracing.EventSourceCreatedEventArgs" /> class.</summary>
// Token: 0x060033C3 RID: 13251 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60033C3")]
[Address(RVA = "0x722A60", Offset = "0x721A60", VA = "0x180722A60")]
public EventSourceCreatedEventArgs()
{
}
}
}