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