Skip to main content

NotesDOMParser

Properties

NameDescription
AddXMLDeclNodeRead-write. Indicates that attributes from the XML declaration line -- version, encoding, and standalone attributes -- should be included in the…
Document (NotesDOMParser)Read-only. The document node in a DOM tree. Serves as the root of the tree.
DoNamespacesRead-write. Indicates that namespaces should be validated.
ExpandEntityReferencesRead-write. Indicates that every reference within a text value to an entity should be replaced by the entity's corresponding text value.
InputValidationOption (NotesDOMParser)Read-write. Indicates that if a DTD is specified in the XML declaration statement, it should be used to validate the input XML.

Methods

NameDescription
Output (NotesDOMParser)Writes data to the specified output object.
Parse (NotesDOMParser)Processes input XML into a standard DOM (Document Object Model) tree structure.
SerializeWalks the DOM document tree and streams the resulting XML to the DOM parser's output object, provided one was specified.

Examples

NameDescription
Examples: Document property (NotesDOMParser)This agent parses the origXML file and writes information about the root document to outputFile.

Reference

NameDescription
PostDOMParseCalled by the Process or Parse method after it parses the NotesDOMParser input into a DOM tree.