ovirtsdk4.xml
This is an utility class used to read XML documents using an streaming approach. It is intended for use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed.
Reads the next XML event from the input.
Jumps to the next start tag, end tag or end of document. Returns True
if stopped at an start tag, False
otherwise.
Returns the name of the current element.
Returns a boolean value indicating if the current element is empty.
Gets the value of the given attribute.
Reads a string value, assuming that the cursor is positioned at the start element that contains the value.
Reads a list of string values, assuming that the cursor is positioned at the start element of the element that contains the first value.
Jumps to the beginning of the next element.
Closes this XML reader and releases all the related resources.
This is an utility class used to generate XML documents using an streaming approach. It is intended for use by other components of the SDK. Refrain from using it directly, as backwards compatibility isn't guaranteed.
Writes the start of an element with the given name.
Writes the end of the current element.
Writes an attribute with the given name and value.
Writes an element with the given name and value.
Flushes this writer, sending all the pending output th the underlying IO object.
Return the XML document text generated by this writer so far.
Closes this writer, releasing all the resources it uses. Note that this doesn't close the IO object.