parsed Property

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

Indicates the parsed status of the node and child nodes.

Script Syntax

            boolValue = oXMLDOMNode.parsed;

Remarks

Script Parameters

None.

Script Return Value

Boolean. True if this node and all descendants have been parsed; False if any descendants remain to be parsed.

C/C++ Syntax

HRESULT get_parsed(
  VARIANT_BOOL* isParsed
);

Remarks

C/C++ Parameters

  • isParsed
    [out, retval] 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.

Requirements

Header msxml2.h, msxml2.idl
Windows Embedded CE Windows CE .NET 4.0 and later

General Remarks

During asynchronous access, not all of the document tree may be available. Before performing some operations, such as Extensible Stylesheet Language Transformations (XSLT) or pattern-matching operations, it is useful to know whether the entire tree below this node is available for processing.

This member is an extension of the World Wide Web Consortium (W3C) Document Object Model (DOM).

This property is read-only, and applies to the following objects and interfaces:

IXMLDOMAttribute, IXMLDOMCDATASection, IXMLDOMCharacterData, IXMLDOMComment, DOMDocument, IXMLDOMDocumentFragment, IXMLDOMDocumentType, IXMLDOMElement, IXMLDOMEntity, IXMLDOMEntityReference, IXMLDOMNode, IXMLDOMNotation, IXMLDOMProcessingInstruction, IXMLDOMText, and IXTLRuntime