Microsoft XML SDK 2.6 - XML Reference

IXMLDOMNode::parsed Method

Indicates whether this node and all descendants have been parsed and instantiated.

Visual Basic Syntax

boolValue = oXMLDOMNode.parsed

C/C++ Syntax

HRESULT parsed(
    VARIANT_BOOL *isParsed);

Parameters

isParsed [out]
True if this node and all descendants have been parsed; False if any descendants remain to be parsed.

C/C++ Return Values

S_OK
Value returned if successful.
E_INVALIDARG
Value returned if isParsed is Null.

Remarks

During asynchronous access, not all of the document tree may be available. Before performing some operations, such as XSL transformations and pattern-matching operations, it is useful to know whether the entire tree below this node is available for processing.

See Also

IXMLDOMNode Interface