Passing a DOMDocument Object as a Parse() Parameter
To parse a DOMDocument
object with SAX, all you have to do is create a DOMDocument
object, for example:
Dim xmlDoc As New DOMDocument30
Instead of a file or URL, specify the DOMDocument
object as a parameter of the SAXXMLReader.parse()
method, for example:
rdr.parse xmlDoc
See Also
ISAXXMLReader Interface
parse Method1
IXMLDOMDocument-DOMDocument