128 lines
4.0 KiB
C#
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: 0x020006AE RID: 1710
|
|
[Token(Token = "0x20006AE")]
|
|
public class EventWrittenEventArgs : EventArgs
|
|
{
|
|
/// <summary>Gets the name of the event.</summary>
|
|
/// <returns>The name of the event.</returns>
|
|
// Token: 0x1700081D RID: 2077
|
|
// (set) Token: 0x060033C4 RID: 13252 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700081D")]
|
|
internal string EventName
|
|
{
|
|
[Token(Token = "0x60033C4")]
|
|
[Address(RVA = "0x41CFF0", Offset = "0x41BFF0", VA = "0x18041CFF0")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the event identifier.</summary>
|
|
/// <returns>The event identifier.</returns>
|
|
// Token: 0x1700081E RID: 2078
|
|
// (set) Token: 0x060033C5 RID: 13253 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700081E")]
|
|
internal int EventId
|
|
{
|
|
[Token(Token = "0x60033C5")]
|
|
[Address(RVA = "0x470D10", Offset = "0x46FD10", VA = "0x180470D10")]
|
|
[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: 0x1700081F RID: 2079
|
|
// (set) Token: 0x060033C6 RID: 13254 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700081F")]
|
|
internal Guid RelatedActivityId
|
|
{
|
|
[Token(Token = "0x60033C6")]
|
|
[Address(RVA = "0x722E40", Offset = "0x721E40", VA = "0x180722E40")]
|
|
[CompilerGenerated]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the payload for the event.</summary>
|
|
/// <returns>The payload for the event.</returns>
|
|
// Token: 0x17000820 RID: 2080
|
|
// (set) Token: 0x060033C7 RID: 13255 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000820")]
|
|
internal ReadOnlyCollection<object> Payload
|
|
{
|
|
[Token(Token = "0x60033C7")]
|
|
[Address(RVA = "0x415820", Offset = "0x414820", VA = "0x180415820")]
|
|
[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: 0x17000821 RID: 2081
|
|
// (set) Token: 0x060033C8 RID: 13256 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000821")]
|
|
internal ReadOnlyCollection<string> PayloadNames
|
|
{
|
|
[Token(Token = "0x60033C8")]
|
|
[Address(RVA = "0x55BCF0", Offset = "0x55ACF0", VA = "0x18055BCF0")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the message for the event.</summary>
|
|
/// <returns>The message for the event.</returns>
|
|
// Token: 0x17000822 RID: 2082
|
|
// (set) Token: 0x060033C9 RID: 13257 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000822")]
|
|
internal string Message
|
|
{
|
|
[Token(Token = "0x60033C9")]
|
|
[Address(RVA = "0x415830", Offset = "0x414830", VA = "0x180415830")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
// Token: 0x060033CA RID: 13258 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60033CA")]
|
|
[Address(RVA = "0x722DD0", Offset = "0x721DD0", VA = "0x180722DD0")]
|
|
internal EventWrittenEventArgs(EventSource eventSource)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04001C5E RID: 7262
|
|
[FieldOffset(Offset = "0x30")]
|
|
[Token(Token = "0x4001C5E")]
|
|
private string m_message;
|
|
|
|
// Token: 0x04001C5F RID: 7263
|
|
[FieldOffset(Offset = "0x38")]
|
|
[Token(Token = "0x4001C5F")]
|
|
private string m_eventName;
|
|
|
|
// Token: 0x04001C60 RID: 7264
|
|
[FieldOffset(Offset = "0x40")]
|
|
[Token(Token = "0x4001C60")]
|
|
private EventSource m_eventSource;
|
|
|
|
// Token: 0x04001C61 RID: 7265
|
|
[FieldOffset(Offset = "0x48")]
|
|
[Token(Token = "0x4001C61")]
|
|
private ReadOnlyCollection<string> m_payloadNames;
|
|
}
|
|
}
|