XDocument.Save Method (TextWriter)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Serialize this XDocument to a TextWriter.
Namespace: System.Xml.Linq
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Syntax
'Declaration
Public Sub Save ( _
textWriter As TextWriter _
)
public void Save(
TextWriter textWriter
)
Parameters
- textWriter
Type: System.IO.TextWriter
A TextWriter that the XDocument will be written to.
Remarks
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. For more information, see the following topic in the full .NET Framework documentation: Preserving White Space While Serializing.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also