FastInfosetWriter.WriteEndElement
WriteEndElement()
Ends XML element writing. Element start is written during calling a method
FastInfosetWriter.WriteStartElement. Once the element start has been written, everything that is written belongs to this element: nested elements, attributes, text, etc. To end the element, call a given method. Each method call
FastInfosetWriter.WriteStartElement must correspond to a given method call.
Thin client, server, thick client, external connection, Mobile application (client), Mobile application (server).
XMLRecord.WriteStartElement("fruits"); XMLRecord.WriteStartElement("apple"); XMLRecord.WriteEndElement(); XMLRecord.WriteStartElement("orange"); XMLRecord.WriteEndElement(); XMLRecord.WriteEndElement();
|