XElement.Save Method (TextWriter)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Serialize this element to a TextWriter.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- textWriter
- Type: System.IO.TextWriter
A TextWriter that the XElement will be written to.
If you want to control serialization options, such as whether or not to remove duplicate namespace declarations or control white space in the LINQ to XML tree, use the Save overload that takes SaveOptions as a parameter.
The following example creates an XElement, saves the document to a StringWriter, and then prints the string to the console.