Save Method (Stream, SaveOptions)
Collapse the table of content
Expand the table of content

XStreamingElement.Save Method (Stream, SaveOptions)

[ 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, optionally specifying formatting behavior.

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

'Declaration
Public Sub Save ( _
	stream As Stream, _
	options As SaveOptions _
)

Parameters

stream
Type: System.IO.Stream
The stream to output this XDocument to.
options
Type: System.Xml.Linq.SaveOptions
A SaveOptions that specifies formatting behavior.

By default the options are set to None. This option will remove all extraneous insignificant white space, and add appropriate insignificant white space so that the XML is properly indented.

If you want to save unindented XML, specify the DisableFormatting flag for options. 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.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft