Click to return to the XML (Extensible Markup Language) home page    
XMLDOMDocument abort Meth...     XMLDOMDocument createAttr...     XMLDOMDocument Object    
Web Workshop  |  XML (Extensible Markup Language)

async Property


Indicates whether asynchronous download is permitted.

Syntax

boolValue = oXMLDOMDocument.async
objXMLDOMDocument.async = boolValue

Remarks

Boolean. The property is read/write. Returns true if asynchronous download is permitted, or false if not. Default is true.

This member is an extension of the W3C DOM.

Example

The following VBScript example sets the async property of an XMLDOMDocument object to false before loading sample.xml:

Dim xmlDoc
xmlDoc.async = false 
xmlDoc.load("sample.xml")

Applies To

[ Object Name ]
PlatformVersion
Win16:
Win32:
Mac:
Unix:
WinCE:
XMLDOMDocument


Back to topBack to top

Did you find this topic useful? Suggestions for other topics? Write us!

© 1999 Microsoft Corporation. All rights reserved. Terms of use.