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