34 lines
1.3 KiB
C#
34 lines
1.3 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Diagnostics.Tracing
|
|
{
|
|
/// <summary>Specifies how the ETW manifest for the event source is generated.</summary>
|
|
// Token: 0x020006BC RID: 1724
|
|
[Token(Token = "0x20006BC")]
|
|
[Flags]
|
|
public enum EventManifestOptions
|
|
{
|
|
/// <summary>No options are specified.</summary>
|
|
// Token: 0x04001C92 RID: 7314
|
|
[Token(Token = "0x4001C92")]
|
|
None = 0,
|
|
/// <summary>Causes an exception to be raised if any inconsistencies occur when writing the manifest file.</summary>
|
|
// Token: 0x04001C93 RID: 7315
|
|
[Token(Token = "0x4001C93")]
|
|
Strict = 1,
|
|
/// <summary>Generates a resources node under the localization folder for every satellite assembly provided.</summary>
|
|
// Token: 0x04001C94 RID: 7316
|
|
[Token(Token = "0x4001C94")]
|
|
AllCultures = 2,
|
|
/// <summary>A manifest is generated only the event source must be registered on the host computer.</summary>
|
|
// Token: 0x04001C95 RID: 7317
|
|
[Token(Token = "0x4001C95")]
|
|
OnlyIfNeededForRegistration = 4,
|
|
/// <summary>Overrides the default behavior that the current <see cref="T:System.Diagnostics.Tracing.EventSource" /> must be the base class of the user-defined type passed to the write method. This enables the validation of .NET event sources.</summary>
|
|
// Token: 0x04001C96 RID: 7318
|
|
[Token(Token = "0x4001C96")]
|
|
AllowEventSourceOverride = 8
|
|
}
|
|
}
|