endEmptyElement Method

 

Note: For internal use only.

Receives notification of the end of an empty element. The reader invokes this method at the end of every empty element in the XML document.

A corresponding startEmptyElement method is invoked for every endEmptyElement method.

Note

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

C/C++ Syntax

HRESULT endEmptyElement(  
   [in] const wchar_t * pwchNamespaceUri,   
   [in] int cchNamespaceUri,   
   [in] const wchar_t * pwchLocalName,   
   [in] int cchLocalName  
   [in] const wchar_t * pwchQName  
   [in] int cchQName);  

Parameters

pwchNamespaceUri[in]
The namespace URI.

cchNamespaceUri[in]
The length of the namespace URI string.

pwchLocalName[in]
The local name string.

cchLocalName[in]
The length of the local name string.

pwchQName[in]
The QName, with prefix, or an empty string (if QNames are not available).

cchQName[in]
The length of the QName string.

Return Values

S_OK
The value returned if no errors occur.

E_FAIL
The value returned if the parse operation should be aborted.

Versioning

Implementation:

MSXML6: msxml6.dll

See Also

startEmptyElement Method
IMXRContentHandler Interface