TelemetryResult 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.
An enum to define the result from user task or operation.
public enum class TelemetryResult
public enum TelemetryResult
type TelemetryResult =
Public Enum TelemetryResult
- Inheritance
-
TelemetryResult
Fields
Name | Value | Description |
---|---|---|
None | 0 | Used for unknown or unavailable result. |
Success | 1 | A result without any failure from product or user. |
Failure | 2 | A result to indicate the action/operation failed because of product issue (not user faults) Consider using FaultEvent to provide more details about the failure. |
UserFault | 3 | A result to indicate the action/operation failed because of user fault (e.g., invalid input). Consider using FaultEvent to provide more details. |
UserCancel | 4 | A result to indicate the action/operation is cancelled by user. |