NotesDOMParser
Properties
| Name | Description |
|---|---|
| AddXMLDeclNode | Read-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. |
| DoNamespaces | Read-write. Indicates that namespaces should be validated. |
| ExpandEntityReferences | Read-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
| Name | Description |
|---|---|
| Output (NotesDOMParser) | Writes data to the specified output object. |
| Parse (NotesDOMParser) | Processes input XML into a standard DOM (Document Object Model) tree structure. |
| Serialize | Walks the DOM document tree and streams the resulting XML to the DOM parser's output object, provided one was specified. |
Examples
| Name | Description |
|---|---|
| Examples: Document property (NotesDOMParser) | This agent parses the origXML file and writes information about the root document to outputFile. |
Reference
| Name | Description |
|---|---|
| PostDOMParse | Called by the Process or Parse method after it parses the NotesDOMParser input into a DOM tree. |