29 lines
950 B
C#
29 lines
950 B
C#
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
|
|
}
|
|
}
|