Save Method (TextWriter)
Collapse the table of content
Expand the table of content

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.

Namespace:  System.Xml.Linq
Assembly:  System.Xml.Linq (in System.Xml.Linq.dll)

'Declaration
Public Sub Save ( _
	textWriter As TextWriter _
)

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.

Dim root As XElement = <Root><Child> Text </Child></Root>
Using sw = New StringWriter()
    root.Save(sw)
End Using

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft