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