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: 0x020006C7 RID: 1735
|
|
[Token(Token = "0x20006C7")]
|
|
[Flags]
|
|
public enum EventKeywords : long
|
|
{
|
|
/// <summary>No filtering on keywords is performed when the event is published.</summary>
|
|
// Token: 0x04001CCF RID: 7375
|
|
[Token(Token = "0x4001CCF")]
|
|
None = 0L,
|
|
/// <summary>All the bits are set to 1, representing every possible group of events.</summary>
|
|
// Token: 0x04001CD0 RID: 7376
|
|
[Token(Token = "0x4001CD0")]
|
|
All = -1L,
|
|
/// <summary>Attached to all Microsoft telemetry events.</summary>
|
|
// Token: 0x04001CD1 RID: 7377
|
|
[Token(Token = "0x4001CD1")]
|
|
MicrosoftTelemetry = 562949953421312L,
|
|
/// <summary>Attached to all Windows Diagnostics Infrastructure (WDI) context events.</summary>
|
|
// Token: 0x04001CD2 RID: 7378
|
|
[Token(Token = "0x4001CD2")]
|
|
WdiContext = 562949953421312L,
|
|
/// <summary>Attached to all Windows Diagnostics Infrastructure (WDI) diagnostic events.</summary>
|
|
// Token: 0x04001CD3 RID: 7379
|
|
[Token(Token = "0x4001CD3")]
|
|
WdiDiagnostic = 1125899906842624L,
|
|
/// <summary>Attached to all Service Quality Mechanism (SQM) events.</summary>
|
|
// Token: 0x04001CD4 RID: 7380
|
|
[Token(Token = "0x4001CD4")]
|
|
Sqm = 2251799813685248L,
|
|
/// <summary>Attached to all failed security audit events. Use this keyword only for events in the security log.</summary>
|
|
// Token: 0x04001CD5 RID: 7381
|
|
[Token(Token = "0x4001CD5")]
|
|
AuditFailure = 4503599627370496L,
|
|
/// <summary>Attached to all successful security audit events. Use this keyword only for events in the security log.</summary>
|
|
// Token: 0x04001CD6 RID: 7382
|
|
[Token(Token = "0x4001CD6")]
|
|
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: 0x04001CD7 RID: 7383
|
|
[Token(Token = "0x4001CD7")]
|
|
CorrelationHint = 4503599627370496L,
|
|
/// <summary>Attached to events that are raised by using the <see langword="RaiseEvent" /> function.</summary>
|
|
// Token: 0x04001CD8 RID: 7384
|
|
[Token(Token = "0x4001CD8")]
|
|
EventLogClassic = 36028797018963968L
|
|
}
|
|
}
|