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