Microsoft Azure Storage Client Library for C++
7.5.0
The Microsoft Azure Storage Client Library for C++ is a library for working with the Azure Storage Services in C++.
|
A class to wrap xmlTextReader of c library libxml2. This class provides abilities to read from xml format texts. More...
Public Member Functions | |
xml_text_reader_wrapper (const unsigned char *buffer, unsigned int size) | |
bool | read () |
Moves to the next node in the stream. More... | |
unsigned | get_node_type () |
Gets the type of the current node. More... | |
bool | is_empty_element () |
Checks if current node is empty More... | |
std::string | get_local_name () |
Gets the local name of the node More... | |
std::string | get_value () |
Gets the value of the node More... | |
bool | move_to_first_attribute () |
Moves to the first attribute of the node. More... | |
bool | move_to_next_attribute () |
Moves to the next attribute of the node. More... | |
A class to wrap xmlTextReader of c library libxml2. This class provides abilities to read from xml format texts.
std::string azure::storage::core::xml::xml_text_reader_wrapper::get_local_name | ( | ) |
Gets the local name of the node
unsigned azure::storage::core::xml::xml_text_reader_wrapper::get_node_type | ( | ) |
Gets the type of the current node.
std::string azure::storage::core::xml::xml_text_reader_wrapper::get_value | ( | ) |
Gets the value of the node
bool azure::storage::core::xml::xml_text_reader_wrapper::is_empty_element | ( | ) |
Checks if current node is empty
bool azure::storage::core::xml::xml_text_reader_wrapper::move_to_first_attribute | ( | ) |
Moves to the first attribute of the node.
bool azure::storage::core::xml::xml_text_reader_wrapper::move_to_next_attribute | ( | ) |
Moves to the next attribute of the node.
bool azure::storage::core::xml::xml_text_reader_wrapper::read | ( | ) |
Moves to the next node in the stream.