Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Diagnostics/Tracing/EventCommand.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

29 lines
950 B
C#

using System;
using Cpp2IlInjected;
namespace System.Diagnostics.Tracing
{
/// <summary>Describes the command (<see cref="P:System.Diagnostics.Tracing.EventCommandEventArgs.Command" /> property) that is passed to the <see cref="M:System.Diagnostics.Tracing.EventSource.OnEventCommand(System.Diagnostics.Tracing.EventCommandEventArgs)" /> callback.</summary>
// Token: 0x020006B2 RID: 1714
[Token(Token = "0x20006B2")]
public enum EventCommand
{
/// <summary>Update the event.</summary>
// Token: 0x04001C70 RID: 7280
[Token(Token = "0x4001C70")]
Update,
/// <summary>Send the manifest.</summary>
// Token: 0x04001C71 RID: 7281
[Token(Token = "0x4001C71")]
SendManifest = -1,
/// <summary>Enable the event.</summary>
// Token: 0x04001C72 RID: 7282
[Token(Token = "0x4001C72")]
Enable = -2,
/// <summary>Disable the event.</summary>
// Token: 0x04001C73 RID: 7283
[Token(Token = "0x4001C73")]
Disable = -3
}
}