XStreamingElement.Save Method (Stream)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Outputs this XStreamingElement to the specified Stream.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- stream
- Type: System.IO.Stream
The stream to output this XDocument 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. Use the DisableFormatting option to save unindented XML. This will cause the writer to write all white spaces exactly as represented in the XML tree.
Use OmitDuplicateNamespaces option if you want to remove duplicate namespace declarations.