C# (CSharp) HandCoded.Xml.Writer Пространство имен

Классы

Имя Описание
CompactWriter The CompactWriter. class produces a XML document that contains the least amount of unnecessary whitespace as possible to keep the overall document size small.
NestedWriter The NestedWriter produces a formated XML document that uses indentation to show the structure of the information. If an element has attributes these are put on their own line to make them easy to read whilst a leaf element is formatted to enclose its value. For example: <?XML version="1.0" encoding="UTF-8"?> <root> <element attr="value"> <leaf>text</leaf;> <leaf/> </element> </root> </?XML>
XmlWriter The Writer class creates and manages a TextWriter used to output an XML document. The derived classes determine how the actual content is formatted on the stream.