This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,28 @@
using System;
using Cpp2IlInjected;
namespace System.Diagnostics.Tracing
{
/// <summary>Describes the command (<see cref="P:System.Diagnostics.Tracing.EventCommandEventArgs.Command" /> property) that is passed to the <see cref="M:System.Diagnostics.Tracing.EventSource.OnEventCommand(System.Diagnostics.Tracing.EventCommandEventArgs)" /> callback.</summary>
// Token: 0x02000691 RID: 1681
[Token(Token = "0x2000691")]
public enum EventCommand
{
/// <summary>Update the event.</summary>
// Token: 0x04001BAD RID: 7085
[Token(Token = "0x4001BAD")]
Update,
/// <summary>Send the manifest.</summary>
// Token: 0x04001BAE RID: 7086
[Token(Token = "0x4001BAE")]
SendManifest = -1,
/// <summary>Enable the event.</summary>
// Token: 0x04001BAF RID: 7087
[Token(Token = "0x4001BAF")]
Enable = -2,
/// <summary>Disable the event.</summary>
// Token: 0x04001BB0 RID: 7088
[Token(Token = "0x4001BB0")]
Disable = -3
}
}