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

59 lines
2.7 KiB
C#

using System;
using System.Runtime.CompilerServices;
using Cpp2IlInjected;
namespace System.Diagnostics.Tracing
{
/// <summary>Defines the standard operation codes that the event source attaches to events.</summary>
// Token: 0x020006A4 RID: 1700
[Token(Token = "0x20006A4")]
[FriendAccessAllowed]
public enum EventOpcode
{
/// <summary>An informational event.</summary>
// Token: 0x04001BFA RID: 7162
[Token(Token = "0x4001BFA")]
Info,
/// <summary>An event that is published when an application starts a new transaction or activity. This operation code can be embedded within another transaction or activity when multiple events that have the <see cref="F:System.Diagnostics.Tracing.EventOpcode.Start" /> code follow each other without an intervening event that has a <see cref="F:System.Diagnostics.Tracing.EventOpcode.Stop" /> code.</summary>
// Token: 0x04001BFB RID: 7163
[Token(Token = "0x4001BFB")]
Start,
/// <summary>An event that is published when an activity or a transaction in an application ends. The event corresponds to the last unpaired event that has a <see cref="F:System.Diagnostics.Tracing.EventOpcode.Start" /> operation code.</summary>
// Token: 0x04001BFC RID: 7164
[Token(Token = "0x4001BFC")]
Stop,
/// <summary>A trace collection start event.</summary>
// Token: 0x04001BFD RID: 7165
[Token(Token = "0x4001BFD")]
DataCollectionStart,
/// <summary>A trace collection stop event.</summary>
// Token: 0x04001BFE RID: 7166
[Token(Token = "0x4001BFE")]
DataCollectionStop,
/// <summary>An extension event.</summary>
// Token: 0x04001BFF RID: 7167
[Token(Token = "0x4001BFF")]
Extension,
/// <summary>An event that is published after an activity in an application replies to an event.</summary>
// Token: 0x04001C00 RID: 7168
[Token(Token = "0x4001C00")]
Reply,
/// <summary>An event that is published after an activity in an application resumes from a suspended state. The event should follow an event that has the <see cref="F:System.Diagnostics.Tracing.EventOpcode.Suspend" /> operation code.</summary>
// Token: 0x04001C01 RID: 7169
[Token(Token = "0x4001C01")]
Resume,
/// <summary>An event that is published when an activity in an application is suspended.</summary>
// Token: 0x04001C02 RID: 7170
[Token(Token = "0x4001C02")]
Suspend,
/// <summary>An event that is published when one activity in an application transfers data or system resources to another activity.</summary>
// Token: 0x04001C03 RID: 7171
[Token(Token = "0x4001C03")]
Send,
/// <summary>An event that is published when one activity in an application receives data.</summary>
// Token: 0x04001C04 RID: 7172
[Token(Token = "0x4001C04")]
Receive = 240
}
}