XmlTagReader
An XmlStreamReader scoped to reading a single XML element tag XmlTagReader provides a "tag" scoped view into an XML document. Methods return null
when the current tag has been exhausted.
Properties
Functions
Exhaust this XmlTagReader to completion. This should always be invoked to maintain deserialization state.
Check if the next token has a value, returns false if XmlToken.EndElement would be returned.
Return an XmlTagReader for the next XmlToken.BeginElement. The returned reader is only valid until nextTag is called or drop is invoked on it, whichever comes first.
Inherited functions
Unwrap the next token as XmlToken.Text and return its value or throw a DeserializationException
Attempt to get the text token as XmlToken.Text and return a result containing its' value on success or the exception thrown on failure.