PlaybackOperation.GetResults method

[The feature associated with this page, Windows Media Streaming API, is a legacy feature. It has been superseded by Media Casting. Media Casting has been optimized for Windows 10 and Windows 11. Microsoft strongly recommends that new code use Media Casting instead of Windows Media Streaming API, when possible. Microsoft suggests that existing code that uses the legacy APIs be rewritten to use the new APIs if possible.]

Returns the results of an asynchronous operation started by one of the MediaRenderer playback methods.

Syntax

HRESULT GetResults(
  [out, retval] UINT32 *value
);

Parameters

value [out, retval]

The result of the operation. A value of 0 indicates that the operation completed. Other values are reserved.

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.

Remarks

The GetResults method is typically called from the event handler that was registered by setting the Completed property.

See also

PlaybackOperation