Indicates whether synchronous or asynchronous download is set. When set to True (the default setting), the load method returns control to the caller before the download is finished. You can then use the readyState property to check the status of the download. You can also attach an onreadystatechange handler or connect to the onreadystatechange event to be notified when the ready state changes so that you know when the download is complete.
boolValue = oXMLDOMDocument.async
HRESULT get_async( VARIANT_BOOL *isAsync);
This member is an extension of the W3C DOM.
Use to select synchronous or asynchronous download. When set to True (the default setting), the load method returns control to the caller before the download is finished. You can then use the readyState property to check the status of the download. You can also attach an onreadystatechange handler or connect to the onreadystatechange event to be notified when the ready state changes so that you know when the download is complete.
objXMLDOMDocument.async = boolValue
HRESULT put_async( VARIANT_BOOL isAsync);
Returns S_OK if successful, or an error code otherwise.
This member is an extension of the W3C DOM.