AsyncStatus 枚举

定义

指定异步操作的状态。

public enum class AsyncStatus
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.FoundationContract, 65536)]
enum class AsyncStatus
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.FoundationContract), 65536)]
public enum AsyncStatus
var value = Windows.Foundation.AsyncStatus.canceled
Public Enum AsyncStatus
继承
AsyncStatus
属性

Windows 要求

设备系列
Windows 10 (在 10.0.10240.0 中引入)
API contract
Windows.Foundation.FoundationContract (在 v1.0 中引入)

字段

Canceled 2

该操作已取消。

Completed 1

操作已完成。

Error 3

操作遇到错误。

Started 0

操作已启动。

注解

此枚举用作 IAsyncInfo.Status 的值, (异步操作的基本状态报告机制) ,也由特定操作实现 ((例如 GetSmsDeviceOperation.Status) ) 使用。

适用于

另请参阅