Files
Apr2020-Cpp2Il-Dump/mscorlib/System/Diagnostics/Tracing/EventWrittenEventArgs.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

128 lines
4.0 KiB
C#

using System;
using System.Collections.ObjectModel;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Diagnostics.Tracing
{
/// <summary>Provides data for the <see cref="M:System.Diagnostics.Tracing.EventListener.OnEventWritten(System.Diagnostics.Tracing.EventWrittenEventArgs)" /> callback.</summary>
// Token: 0x0200068D RID: 1677
[Token(Token = "0x200068D")]
public class EventWrittenEventArgs : EventArgs
{
/// <summary>Gets the name of the event.</summary>
/// <returns>The name of the event.</returns>
// Token: 0x170007A5 RID: 1957
// (set) Token: 0x060031A9 RID: 12713 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170007A5")]
internal string EventName
{
[Token(Token = "0x60031A9")]
[Address(RVA = "0x5329E0", Offset = "0x5317E0", VA = "0x1805329E0")]
set
{
}
}
/// <summary>Gets the event identifier.</summary>
/// <returns>The event identifier.</returns>
// Token: 0x170007A6 RID: 1958
// (set) Token: 0x060031AA RID: 12714 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170007A6")]
internal int EventId
{
[Token(Token = "0x60031AA")]
[Address(RVA = "0x536480", Offset = "0x535280", VA = "0x180536480")]
[CompilerGenerated]
set
{
}
}
/// <summary>Gets the identifier of an activity that is related to the activity represented by the current instance.</summary>
/// <returns>The identifier of the related activity, or <see cref="F:System.Guid.Empty" /> if there is no related activity.</returns>
// Token: 0x170007A7 RID: 1959
// (set) Token: 0x060031AB RID: 12715 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170007A7")]
internal Guid RelatedActivityId
{
[Token(Token = "0x60031AB")]
[Address(RVA = "0x11C0C10", Offset = "0x11BFA10", VA = "0x1811C0C10")]
[CompilerGenerated]
set
{
}
}
/// <summary>Gets the payload for the event.</summary>
/// <returns>The payload for the event.</returns>
// Token: 0x170007A8 RID: 1960
// (set) Token: 0x060031AC RID: 12716 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170007A8")]
internal ReadOnlyCollection<object> Payload
{
[Token(Token = "0x60031AC")]
[Address(RVA = "0x409C60", Offset = "0x408A60", VA = "0x180409C60")]
[CompilerGenerated]
set
{
}
}
/// <summary>Returns a list of strings that represent the property names of the event.</summary>
/// <returns>Returns <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" />.</returns>
// Token: 0x170007A9 RID: 1961
// (set) Token: 0x060031AD RID: 12717 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170007A9")]
internal ReadOnlyCollection<string> PayloadNames
{
[Token(Token = "0x60031AD")]
[Address(RVA = "0x46AA50", Offset = "0x469850", VA = "0x18046AA50")]
set
{
}
}
/// <summary>Gets the message for the event.</summary>
/// <returns>The message for the event.</returns>
// Token: 0x170007AA RID: 1962
// (set) Token: 0x060031AE RID: 12718 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170007AA")]
internal string Message
{
[Token(Token = "0x60031AE")]
[Address(RVA = "0x4437E0", Offset = "0x4425E0", VA = "0x1804437E0")]
set
{
}
}
// Token: 0x060031AF RID: 12719 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60031AF")]
[Address(RVA = "0x1E93270", Offset = "0x1E92070", VA = "0x181E93270")]
internal EventWrittenEventArgs(EventSource eventSource)
{
}
// Token: 0x04001B9B RID: 7067
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x4001B9B")]
private string m_message;
// Token: 0x04001B9C RID: 7068
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x4001B9C")]
private string m_eventName;
// Token: 0x04001B9D RID: 7069
[FieldOffset(Offset = "0x40")]
[Token(Token = "0x4001B9D")]
private EventSource m_eventSource;
// Token: 0x04001B9E RID: 7070
[FieldOffset(Offset = "0x48")]
[Token(Token = "0x4001B9E")]
private ReadOnlyCollection<string> m_payloadNames;
}
}