RegistrationStatuses 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.
enum
representing all the possible results of calls to register a new trace log stream.
This enumeration supports a bitwise combination of its member values.
public enum class RegistrationStatuses
[System.Flags]
public enum RegistrationStatuses
[<System.Flags>]
type RegistrationStatuses =
Public Enum RegistrationStatuses
- Inheritance
-
RegistrationStatuses
- Attributes
Fields
Name | Value | Description |
---|---|---|
Failure | 0 | This is the default value with no flags set, this indicates a failure. |
Success | 1 | When set indicates that the trace log stream was registered successfully. When not set this indicates a failure. If a failure, a trace log stream may already exist with the given LogName and a different ServiceId. |
NewRegistration | 2 | When set this indicates that this trace log stream was not previously registered. When not set this indicates that this trace log stream has already been registered. |