IsAsyncMoniker (Windows Embedded CE 6.0)
1/6/2010
This function tests to determine whether a moniker supports asynchronous binding.
Syntax
HRESULT IsAsyncMoniker(
IMoniker* pmk
);
Parameters
- pmk
[in] Address of the IMoniker interface of the moniker to be tested.
Return Value
This function returns one of the values shown in the following table.
Value | Description |
---|---|
E_INVALIDARG |
The pmk parameter is invalid. |
S_FALSE |
The specified moniker is not asynchronous. |
S_OK |
The specified moniker is asynchronous. |
Remarks
A moniker implementation indicates that it is asynchronous by supporting the IAsyncMoniker interface, an empty interface that is just an implementation of IUnknown. The IsAsyncMoniker function tests for support of IAsyncMoniker and also handles composite monikers correctly.
Requirements
Header | urlmon.h, urlmon.idl |
Library | urlmon.lib |
Windows Embedded CE | Windows CE .NET 4.0 and later |