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: 0x020006C5 RID: 1733
[Token(Token = "0x20006C5")]
[FriendAccessAllowed]
public enum EventOpcode
{
/// An informational event.
// Token: 0x04001CBD RID: 7357
[Token(Token = "0x4001CBD")]
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: 0x04001CBE RID: 7358
[Token(Token = "0x4001CBE")]
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: 0x04001CBF RID: 7359
[Token(Token = "0x4001CBF")]
Stop,
/// A trace collection start event.
// Token: 0x04001CC0 RID: 7360
[Token(Token = "0x4001CC0")]
DataCollectionStart,
/// A trace collection stop event.
// Token: 0x04001CC1 RID: 7361
[Token(Token = "0x4001CC1")]
DataCollectionStop,
/// An extension event.
// Token: 0x04001CC2 RID: 7362
[Token(Token = "0x4001CC2")]
Extension,
/// An event that is published after an activity in an application replies to an event.
// Token: 0x04001CC3 RID: 7363
[Token(Token = "0x4001CC3")]
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: 0x04001CC4 RID: 7364
[Token(Token = "0x4001CC4")]
Resume,
/// An event that is published when an activity in an application is suspended.
// Token: 0x04001CC5 RID: 7365
[Token(Token = "0x4001CC5")]
Suspend,
/// An event that is published when one activity in an application transfers data or system resources to another activity.
// Token: 0x04001CC6 RID: 7366
[Token(Token = "0x4001CC6")]
Send,
/// An event that is published when one activity in an application receives data.
// Token: 0x04001CC7 RID: 7367
[Token(Token = "0x4001CC7")]
Receive = 240
}
}