XElement.Save Method
.NET Framework 4.5
Serialize this element's underlying XML tree. The output can be saved to a file, an XmlTextWriter, a TextWriter, or an XmlWriter. Optionally, formatting (indenting) can be disabled.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
Save(Stream) | Outputs this XElement to the specified Stream. |
|
Save(String) | Serialize this element to a file. |
|
Save(TextWriter) | Serialize this element to a TextWriter. |
|
Save(XmlWriter) | Serialize this element to an XmlWriter. |
|
Save(Stream, SaveOptions) | Outputs this XElement to the specified Stream, optionally specifying formatting behavior. |
|
Save(String, SaveOptions) | Serialize this element to a file, optionally disabling formatting. |
|
Save(TextWriter, SaveOptions) | Serialize this element to a TextWriter, optionally disabling formatting. |