Share via


IsAsyncMoniker

Send Feedback

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 Values

Returns one of the following values:

  • 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

Pocket PC: Pocket PC 2000 and later
Smartphone: Smartphone 2002 and later
OS Versions: Windows CE 3.0 and later
Header: urlmon.h
Library: urlmon.lib

See Also

URL Moniker Services Functions

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.