using System;
using Cpp2IlInjected;
namespace System.Diagnostics.Tracing
{
/// Describes the command ( property) that is passed to the callback.
// Token: 0x02000691 RID: 1681
[Token(Token = "0x2000691")]
public enum EventCommand
{
/// Update the event.
// Token: 0x04001BAD RID: 7085
[Token(Token = "0x4001BAD")]
Update,
/// Send the manifest.
// Token: 0x04001BAE RID: 7086
[Token(Token = "0x4001BAE")]
SendManifest = -1,
/// Enable the event.
// Token: 0x04001BAF RID: 7087
[Token(Token = "0x4001BAF")]
Enable = -2,
/// Disable the event.
// Token: 0x04001BB0 RID: 7088
[Token(Token = "0x4001BB0")]
Disable = -3
}
}