AsyncStatus enumeration (asyncinfo.h)

Represents the status for an asynchronous operation.

Syntax

typedef enum AsyncStatus {
  Started,
  Completed,
  Canceled,
  Error
} ;

Constants

 
Started
The operation is in progress.
Completed
The operation has completed without error.
Canceled
The client has initiated a cancellation of the operation.
Error
The operation has completed with an error. No results are available.

Requirements

Requirement Value
Minimum supported client Windows 8
Minimum supported server Windows Server 2012
Header asyncinfo.h

See also

IAsyncInfo