CB_REQUEST_STATUS enumeration

Specifies the status of an asynchronous request. This enumeration is used with the IConnectionBrokerRequest::CheckStatus method.

Syntax

typedef enum _CB_REQUEST_STATUS { 
  CB_STATUS_INVALID                     = 1,
  CB_STATUS_INITIATING_REQUEST          = 0,
  CB_STATUS_REQUEST_COMPLETED,
  CB_STATUS_REQUEST_FAILED,
  CB_STATUS_REQUEST_ABORTED,
  CB_STATUS_FINDING_DESTINATION,
  CB_STATUS_LOADING_DESTINATION,
  CB_STATUS_BRINGING_SESSION_ONLINE,
  CB_STATUS_REDIRECTING_TO_DESTINATION
} CB_REQUEST_STATUS;

Constants

CB_STATUS_INVALID

The request object is not initialized.

CB_STATUS_INITIATING_REQUEST

Not used.

CB_STATUS_REQUEST_COMPLETED

The request is complete.

CB_STATUS_REQUEST_FAILED

The request failed.

CB_STATUS_REQUEST_ABORTED

The request was aborted.

CB_STATUS_FINDING_DESTINATION

Not used.

CB_STATUS_LOADING_DESTINATION

Not used.

CB_STATUS_BRINGING_SESSION_ONLINE

Not used.

CB_STATUS_REDIRECTING_TO_DESTINATION

Not used.

Requirements

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

See also

IConnectionBrokerRequest::CheckStatus