Share via


parsed Property (Windows CE 5.0)

Send Feedback

Indicates the parsed status of the node and child nodes.

[Script]

Script Syntax

boolValue= oXMLDOMNode.parsed;

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++]

C/C++ Syntax

HRESULT get_parsed(VARIANT_BOOL* isParsed);

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

OS Versions: Windows CE .NET 4.0 and later.
Header: Msxml2.h, Msxml2.idl.

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

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.