Indicates whether asynchronous download is permitted.
Visual Basic Syntax
boolValue = oXMLDOMDocument.async
C/C++ Syntax
HRESULT get_async( VARIANT_BOOL *isAsync);
Parameters
- isAsync
- [out] True if asynchronous download is permitted, or false if not.
C/C++ Return Values
- S_OK
- Value returned if successful.
- E_INVALIDARG
- Value returned if isAsync is null.
Remarks
This member is an extension of the W3C DOM.
Indicates whether asynchronous download is permitted.
Visual Basic Syntax
objXMLDOMDocument.async = boolValue
C/C++ Syntax
HRESULT put_async( VARIANT_BOOL isAsync);
Parameters
- isAsync
- [out] True if asynchronous download is permitted, or false if not.
C/C++ Return Value
Returns S_OK if successful, or an error code otherwise.
Remarks
This member is an extension of the W3C DOM.