using System;
using Cpp2IlInjected;
namespace System.Diagnostics.Tracing
{
/// Defines the standard keywords that apply to events.
// Token: 0x020006C7 RID: 1735
[Token(Token = "0x20006C7")]
[Flags]
public enum EventKeywords : long
{
/// No filtering on keywords is performed when the event is published.
// Token: 0x04001CCF RID: 7375
[Token(Token = "0x4001CCF")]
None = 0L,
/// All the bits are set to 1, representing every possible group of events.
// Token: 0x04001CD0 RID: 7376
[Token(Token = "0x4001CD0")]
All = -1L,
/// Attached to all Microsoft telemetry events.
// Token: 0x04001CD1 RID: 7377
[Token(Token = "0x4001CD1")]
MicrosoftTelemetry = 562949953421312L,
/// Attached to all Windows Diagnostics Infrastructure (WDI) context events.
// Token: 0x04001CD2 RID: 7378
[Token(Token = "0x4001CD2")]
WdiContext = 562949953421312L,
/// Attached to all Windows Diagnostics Infrastructure (WDI) diagnostic events.
// Token: 0x04001CD3 RID: 7379
[Token(Token = "0x4001CD3")]
WdiDiagnostic = 1125899906842624L,
/// Attached to all Service Quality Mechanism (SQM) events.
// Token: 0x04001CD4 RID: 7380
[Token(Token = "0x4001CD4")]
Sqm = 2251799813685248L,
/// Attached to all failed security audit events. Use this keyword only for events in the security log.
// Token: 0x04001CD5 RID: 7381
[Token(Token = "0x4001CD5")]
AuditFailure = 4503599627370496L,
/// Attached to all successful security audit events. Use this keyword only for events in the security log.
// Token: 0x04001CD6 RID: 7382
[Token(Token = "0x4001CD6")]
AuditSuccess = 9007199254740992L,
/// Attached to transfer events where the related activity ID (correlation ID) is a computed value and is not guaranteed to be unique (that is, it is not a real GUID).
// Token: 0x04001CD7 RID: 7383
[Token(Token = "0x4001CD7")]
CorrelationHint = 4503599627370496L,
/// Attached to events that are raised by using the function.
// Token: 0x04001CD8 RID: 7384
[Token(Token = "0x4001CD8")]
EventLogClassic = 36028797018963968L
}
}