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
XMLDOMDocument