IMXRContentHandler Interface

 

This interface is for internal use only

The IMXRContentHandler interface extends the implementation of the ISAXContentHandler interface. ISAXContentHandler interface contains the functionality that allows you to receive notifications of the logical content of a document. The IMXRContentHandler interface, in addition to the functionality available through extending ISAXContentHandler interface, implements notifications of whitespace and empty elements.

Note

The IMXRContentHandler interface is for MSXML internal use, and is not intended to be used directly from your code.

Methods

In addition to the methods provided by the ISAXContentHandler interface, the following three methods are provided by the IMXRContentHandler interface: whitespace, endEmptyElement, startEmptyElement.

whitespace Receives notification of whitespaces.
endEmptyElement Receives notification of the end of an empty element.
startEmptyElement Receives notification of the beginning of an empty element.
characters Receives notification of character data.
endDocument Receives notification of the end of a document.
startDocument Receives notification of the beginning of a document.
endElement Receives notification of the end of an element.
startElement Receives notification of the beginning of an element.
ignorableWhitespace Receives notification of ignorable white space in element content. This method is not called in the MSXML 4.0 and later, because the SAX2 implementation is nonvalidating.
endPrefixMapping Indicates the end of a namespace prefix that maps to a URI.
startPrefixMapping Indicates the beginning of a namespace prefix that maps to a URI.
processingInstruction Receives notification of a processing instruction.
skippedEntity Receives notification of a skipped entity.

Requirements

Implementation:

MSXML6: msxml6.dll

See Also

ISAXContentHandler Interface