using System; using Cpp2IlInjected; namespace System.Diagnostics.Tracing { /// Defines the standard keywords that apply to events. // Token: 0x020006A6 RID: 1702 [Token(Token = "0x20006A6")] [Flags] public enum EventKeywords : long { /// No filtering on keywords is performed when the event is published. // Token: 0x04001C0C RID: 7180 [Token(Token = "0x4001C0C")] None = 0L, /// All the bits are set to 1, representing every possible group of events. // Token: 0x04001C0D RID: 7181 [Token(Token = "0x4001C0D")] All = -1L, /// Attached to all Microsoft telemetry events. // Token: 0x04001C0E RID: 7182 [Token(Token = "0x4001C0E")] MicrosoftTelemetry = 562949953421312L, /// Attached to all Windows Diagnostics Infrastructure (WDI) context events. // Token: 0x04001C0F RID: 7183 [Token(Token = "0x4001C0F")] WdiContext = 562949953421312L, /// Attached to all Windows Diagnostics Infrastructure (WDI) diagnostic events. // Token: 0x04001C10 RID: 7184 [Token(Token = "0x4001C10")] WdiDiagnostic = 1125899906842624L, /// Attached to all Service Quality Mechanism (SQM) events. // Token: 0x04001C11 RID: 7185 [Token(Token = "0x4001C11")] Sqm = 2251799813685248L, /// Attached to all failed security audit events. Use this keyword only for events in the security log. // Token: 0x04001C12 RID: 7186 [Token(Token = "0x4001C12")] AuditFailure = 4503599627370496L, /// Attached to all successful security audit events. Use this keyword only for events in the security log. // Token: 0x04001C13 RID: 7187 [Token(Token = "0x4001C13")] 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: 0x04001C14 RID: 7188 [Token(Token = "0x4001C14")] CorrelationHint = 4503599627370496L, /// Attached to events that are raised by using the function. // Token: 0x04001C15 RID: 7189 [Token(Token = "0x4001C15")] EventLogClassic = 36028797018963968L } }