XDocument.Save Method (TextWriter)
Serialize this XDocument to a TextWriter.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- textWriter
- Type: System.IO.TextWriter
A TextWriter that the XDocument will be written to.
The serialized XML will be indented. All insignificant white space will be removed, and additional white space will be added so that the XML will be properly indented. The behavior of this method is that insignificant white space will not be preserved.
If you want to control white space, use the overload of Save that takes SaveOptions as a parameter. For more information, see Preserving White Space while Loading or Parsing XML and Preserving White Space While Serializing.
The following example creates an XDocument, saves the document to a StringWriter, and then prints the string to the console.
StringBuilder sb = new StringBuilder(); XDocument doc = new XDocument( new XElement("Root", new XElement("Child", "content") ) ); TextWriter tr = new StringWriter(sb); doc.Save(tr); Console.WriteLine(sb.ToString());
This example produces the following output:
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.