EventManifestOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies how the ETW manifest for the event source is generated.
This enumeration supports a bitwise combination of its member values.
public enum class EventManifestOptions
[System.Flags]
public enum EventManifestOptions
[<System.Flags>]
type EventManifestOptions =
Public Enum EventManifestOptions
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No options are specified. |
Strict | 1 | Causes an exception to be raised if any inconsistencies occur when writing the manifest file. |
AllCultures | 2 | Generates a resources node under the localization folder for every satellite assembly provided. |
OnlyIfNeededForRegistration | 4 | A manifest is generated only the event source must be registered on the host computer. |
AllowEventSourceOverride | 8 | Overrides the default behavior that the current EventSource must be the base class of the user-defined type passed to the write method. This enables the validation of .NET event sources. |
Remarks
A bitwise combination of these values will determine how the manifest is written for the event source. For example you can specify whether resource files are generated and how strict the manifest validation is.