Share via


async Property

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

Specifies if asynchronous download is permitted.

Note

This property is only supported on operating systems (OSs) that have Windows Internet API (WinInet) and URL Moniker Services (URLMON) included.

Script Syntax

            boolValue = oXMLDOMDocument.async;
objXMLDOMDocument.async = boolValue;

Remarks

Script Parameters

None.

Script Return Value

Boolean. Returns True if asynchronous download is permitted; False if not. Default is True.

C/C++ Syntax

HRESULT get_async(
  VARIANT_BOOL* isAsync
);
HRESULT put_async(
  VARIANT_BOOL isAsync
);

Remarks

C/C++ Parameters

  • isAsync
    [out][in] True if asynchronous download is permitted; False if not.

C/C++ Return Values

  • S_OK
    Value returned if successful.
  • E_INVALIDARG (for get_async only)
    Value returned if isAsync is Null.

Requirements

Header msxml2.h, msxml2.idl
Windows Embedded CE Windows CE .NET 4.0 and later

General Remarks

When set to True, the load method returns control to the caller before the download is finished. You can then use the readyState Property (DOMDocument) to check the status of the download. You can also attach an onreadystatechange Property (DOMDocument) handler or connect to the onreadystatechange Event to be notified when the ready state changes so that you know when the download is complete.

This member is an extension of the World Wide Web Consortium (W3C) Document Object Model (DOM).

This property is read/write, and applies to the following interface:

DOMDocument

See Also

Concepts

onreadystatechange Property (DOMDocument)
readyState Property (DOMDocument)

Other Resources