Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

30 lines
1.2 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Diagnostics.Tracing
{
/// <summary>Specifies the tracking of activity start and stop events.</summary>
// Token: 0x020006A1 RID: 1697
[Token(Token = "0x20006A1")]
[Flags]
public enum EventActivityOptions
{
/// <summary>Use the default behavior for start and stop tracking.</summary>
// Token: 0x04001C16 RID: 7190
[Token(Token = "0x4001C16")]
None = 0,
/// <summary>Turn off start and stop tracking.</summary>
// Token: 0x04001C17 RID: 7191
[Token(Token = "0x4001C17")]
Disable = 2,
/// <summary>Allow recursive activity starts. By default, an activity cannot be recursive. That is, a sequence of Start A, Start A, Stop A, Stop A is not allowed. Unintentional recursive activities can occur if the app executes and for some the stop is not reached before another start is called.</summary>
// Token: 0x04001C18 RID: 7192
[Token(Token = "0x4001C18")]
Recursive = 4,
/// <summary>Allow overlapping activities. By default, activity starts and stops must be property nested. That is, a sequence of Start A, Start B, Stop A, Stop B is not allowed will result in B stopping at the same time as A.</summary>
// Token: 0x04001C19 RID: 7193
[Token(Token = "0x4001C19")]
Detachable = 8
}
}