Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
virtual P6R::P6ERR P6R::p6ISAX2ContentHandler::endPrefixMapping ( P6SAX2STRING pPrefix)
pure virtual

Provides an application the notification when a namespace has just gone out of scope.

The previous event should have been an endElement() method call that will indicated the namespace going out of scope.

This method is called only if the "http://xml.org/sax/features/namespaces" feature is enabled by a call to p6ISAX2XMLReader::setFeature(); All P6SAX2STRING values are ONLY valid during this callback. An application that wants to keep a copy of the string MUST make a copy during this method call.

Parameters
pPrefix[ in ] Given the example: "<USA:money>", then 'USA' is the namespace prefix returned in this parameter.
Returns
SuccessP6R::eOk 
FailureP6R::eInvalidArgpPrefix is NULL.