Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
Previous Versions
.NET Framework 1.1
.NET Framework
Reference
System.Xml
XmlDocument Class
Methods
Save Method
 Save Method (Stream)
.NET Framework Class Library
XmlDocument.Save Method (Stream)

Saves the XML document to the specified stream.

[Visual Basic]
Overloads Public Overridable Sub Save( _
   ByVal outStream As Stream _
)
[C#]
public virtual void Save(
 Stream outStream
);
[C++]
public: virtual void Save(
 Stream* outStream
);
[JScript]
public function Save(
   outStream : Stream
);

Parameters

outStream
The stream to which you want to save.

Exceptions

Exception Type Condition
XmlException The operation would not result in a well formed XML document (for example, no document element or duplicate XML declarations).

Remarks

White space is preserved only if PreserveWhitespace is set to true.

The XmlDeclaration of the current XmlDocument object determines the encoding attribute in the saved document. The value of the encoding attribute is taken from the XmlDeclaration.Encoding property. If the XmlDocument does not have an XmlDeclaration, or if the XmlDeclaration does not have an encoding attribute, the saved document will not have one either.

When the document is saved, xmlns attributes are generated to persist the node identity (local name + namespace URI) correctly. For example, the following C# code

XmlDocument doc = new XmlDocument();
doc.AppendChild(doc.CreateElement("item","urn:1"));
doc.Save(Console.Out);

generates this xmls attribute <item

xmls="urn:1"/>.

This method is a Microsoft extension to the Document Object Model (DOM).

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework

See Also

XmlDocument Class | XmlDocument Members | System.Xml Namespace | XmlDocument.Save Overload List

© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker