XmlSerializer.Serialize Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Include Protected Members
Include Inherited Members
Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members
Serializes an object into an XML document.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
Serialize(Object, XmlSerializationWriter) | Infrastructure. Serializes the specified Object and writes the XML document to a file using the specified XmlSerializationWriter. | |
Serialize(Stream, Object) | Serializes the specified Object and writes the XML document to a file using the specified Stream. | |
Serialize(TextWriter, Object) | Serializes the specified Object and writes the XML document to a file using the specified TextWriter. | |
Serialize(XmlWriter, Object) | Serializes the specified Object and writes the XML document to a file using the specified XmlWriter. | |
Serialize(Stream, Object, XmlSerializerNamespaces) | Serializes the specified Object and writes the XML document to a file using the specified Stream that references the specified namespaces. | |
Serialize(TextWriter, Object, XmlSerializerNamespaces) | Serializes the specified Object and writes the XML document to a file using the specified TextWriter and references the specified namespaces. | |
Serialize(XmlWriter, Object, XmlSerializerNamespaces) | Serializes the specified Object and writes the XML document to a file using the specified XmlWriter and references the specified namespaces. |
Top