XDocument.Save Method (XmlWriter)
Namespace: System.Xml.Linq
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- writer
- Type: System.Xml.XmlWriter
A XmlWriter that the XDocument will be written to.
The following example shows how to save an XDocument to an XmlWriter.
Dim output As New StringBuilder Dim sb As StringBuilder = New StringBuilder() Dim xws As XmlWriterSettings = New XmlWriterSettings() xws.OmitXmlDeclaration = True xws.Indent = True Using xw = XmlWriter.Create(sb, xws) Dim doc As XDocument = New XDocument(<Child><GrandChild>some content</GrandChild></Child>) doc.Save(xw) End Using output.Append(sb.ToString()) output.Append(Environment.NewLine) OutputTextBlock.Text = output.ToString()
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.