* @brief Returns the length of the character data. * * If the data is a binary buffer this is the size of that buffer. * If the data is a null terminated string this is the length of the string + 1 (for the null). *************************************************************/
| 216 | * If the data is a null terminated string this is the length of the string + 1 (for the null). |
| 217 | *************************************************************/ |
| 218 | int ClientXML::GetCharacterDataLength() const |
| 219 | { |
| 220 | return m_pElementXML->GetCharacterDataLength() ; |
| 221 | } |
| 222 | |
| 223 | /************************************************************* |
| 224 | * @brief Converts the XML object to a string. |