Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
virtual P6R::P6ERR P6R::p6ISAX2ContentHandler::characters ( P6SAX2STRING pBuffer,
P6SAX2METADATA  meta 
)
pure virtual

Provides an element's contents to the application.

For example, given an element of: <money> 53 dollars and 35 cents</money>, the string " 53 dollars and 35 cents" is passed to the application in one or more calls.

Parameters
pBuffer[ in ] contains a text string, this value is ONLY valid during this callback. An application that wants to keep a copy of the string MUST make a copy during this method call.
meta[ in ] A bit mask indicating properties of the provided chunk of characters. For example, the P6SAX2META_INCDATA value indicates that the associated chunk of characters was wrapped by an XML CDATA construct.
Returns
SuccessP6R::eOk 
FailureP6R::eInvalidArgpBuffer is NULL.