XDocument.Save Method (String)
Serialize this XDocument to a file, overwriting an existing file, if it exists.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
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. For more information, see Preserving White Space while Loading or Parsing XML and Preserving White Space While Serializing.
The following example creates an XDocument, saves the document to a file, and then prints the file to the console.
XDocument doc = new XDocument( new XElement("Root", new XElement("Child", "content") ) ); doc.Save("Root.xml"); Console.WriteLine(File.ReadAllText("Root.xml"));
This example produces the following output:
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.