XStreamingElement::Save Method (TextWriter^)
Serialize this streaming element to a TextWriter.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- textWriter
-
Type:
System.IO::TextWriter^
A TextWriter that the XStreamingElement 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 nodes in the XML tree will not be preserved.
If you want to control white space, use one of the overloads of Save that take SaveOptions as a parameter. For more information, see Preserving White Space while Loading or Parsing XML3 and Preserving White Space While Serializing1.
The following example creates a source XML tree, then instantiates an XStreamingElement using a query on the source XML tree. It then writes the streaming element to a StringWriter.
This example produces the following output:
<?xml version="1.0" encoding="utf-16"?>
<NewRoot>
<DifferentChild>3</DifferentChild>
<DifferentChild>4</DifferentChild>
<DifferentChild>5</DifferentChild>
</NewRoot>
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1