serializeXML
abstract fun serializeXML(encoder: Encoder, output: XmlWriter, value: T, isValueChild: Boolean = false)
Deserialize the XML using the implementation. This is intended to be using the XmlReader for special purposes. The format will attempt to shield the input to avoid erroneous parsing.
Parameters
encoder
The encoder for serialization
output
The XmlWriter to use for special purpose writing. Note that mixing output and encoder based may not work correctly
isValueChild
A parameter to indicate whether the element is a value child (the output) should still allow for writing attributes/namespace declarations on the container.
