System.Xml.XmlDocument.Save Method

Saves the XML document to the specified System.Xml.XmlWriter.

Syntax

public virtual void Save (XmlWriter w)

Parameters

w
The XmlWriter to which you want to save.

Remarks

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

The encoding on the XmlWriter determines the encoding that is written out (The encoding of the XmlDeclaration node is replaced by the encoding of the XmlWriter). If there was no encoding specified on the XmlWriter, the XmlDocument is saved without an encoding attribute.

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

Example

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

generates this xmls attribute:

Example

<item
    xmls="urn:1"/>

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

Note that only the XmlDocument.Save(string) method enforces a well-formed XML document. All other Save overloads only guarantee a well-formed fragment.

Requirements

Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0