* @brief Get the character data for this element. * * @returns Returns the character data for this element. If the element has no character data, returns zero-length string. * The character data returned will not include any XML escape sequences (e.g. <). * It will include the original special characters (e.g. "<"). *********************************************************
| 174 | * It will include the original special characters (e.g. "<"). |
| 175 | *************************************************************/ |
| 176 | char const* ClientXML::GetCharacterData() const |
| 177 | { |
| 178 | return m_pElementXML->GetCharacterData() ; |
| 179 | } |
| 180 | |
| 181 | /************************************************************* |
| 182 | * @brief Returns true if the character data should be treated as a binary buffer |
no outgoing calls