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