Serializing XML Trees
Serializing an XML tree means generating XML from the XML tree. You can serialize to a file, to a concrete implementation of the TextWriter class, or to a concrete implementation of an XmlWriter.
You can control various aspects of serialization. For example, you can control whether to indent the serialized XML, and whether to write an XML declaration.
In This Section
Topic |
Description |
---|---|
Describes how to control white space behavior when you serialize XML trees. |
|
Describes how to serialize an XML tree that includes an XML declaration. |
|
Describes how to serialize a document to a File, a TextWriter, or an XmlWriter. |
|
Describes how to create a XmlReader that enables another module to read the contents of an XML tree. |