IRtwqAsyncResult::GetState method (rtworkq.h)

Returns the state object specified by the caller in the asynchronous Begin method.

Syntax

HRESULT GetState(
  [out] IUnknown **ppunkState
);

Parameters

[out] ppunkState

Receives a pointer to the state object's IUnknown interface. If the value is not NULL, the caller must release the interface.

Return value

The method returns an HRESULT. Possible values include, but are not limited to, those in the following table.

Return code Description
S_OK
The method succeeded.
E_POINTER
There is no state object associated with this asynchronous result.

Requirements

Requirement Value
Minimum supported client Windows 8.1 [desktop apps only]
Minimum supported server Windows Server 2012 R2 [desktop apps only]
Target Platform Windows
Header rtworkq.h
Library Rtworkq.lib
DLL RTWorkQ.dll

See also

IRtwqAsyncResult