![]() |
XML DOM User Guide
With the XML Document Object Model (DOM), you can load and parse XML files, gather information about those files, and navigate and manipulate those files. The four main objects exposed by the XML DOM are XMLDOMDocument, XMLDOMNode, XMLDOMNodeList, and XMLDOMNamedNodeMap. Each of these objects exposes methods and properties that enable you to gather information about the instance of the object, manipulate the value and structure of the object, and navigate to other objects within the tree. The DOM exposes the XML document as a tree structure that is composed of nodes; the DOM programming interfaces
enable applications to traverse the tree and manipulate its nodes. Each node is defined as a specific node
type, according to the nodeType The W3C Document Object Model Level 1 Specification The XML DOM provided with Internet Explorer 5 implements both the fundamental and extended interfaces. It also
provides other methods to support Extensible Stylesheet Language (XSL),
XSL Patterns,
namespaces, and data types.
For example, the selectNodes For script developers, the most important of the provided programming objects is the
XMLDOMDocument For C/C++/VB developers, these objects are exposed as the COM interfaces
IXMLDOMDocument, For complete reference material concerning each specific object and the methods and properties exposed by that object, see the reference documentation:
The following user guide is a brief explanation of how to use the XML DOM objects and the methods and properties exposed by each one.
|
|
© 1999 Microsoft Corporation. All rights reserved. Terms of Use. |