async Property (Windows Embedded CE 6.0)

1/6/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

Ee502767.collapse(en-US,WinEmbedded.60).gifScript Parameters

None.

Ee502767.collapse(en-US,WinEmbedded.60).gifScript Return Value

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

Ee502767.collapse(en-US,WinEmbedded.60).gifC/C++ Syntax

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

Remarks

Ee502767.collapse(en-US,WinEmbedded.60).gifC/C++ Parameters

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

Ee502767.collapse(en-US,WinEmbedded.60).gifC/C++ Return Values

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

Ee502767.collapse(en-US,WinEmbedded.60).gifRequirements

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

Reference

XML DOM Properties

Concepts

onreadystatechange Property (DOMDocument)
readyState Property (DOMDocument)

Other Resources