Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XmlSerializer::Serialize Method (XmlWriter^, Object^, XmlSerializerNamespaces^, String^, String^)

 

Serializes the specified Object and writes the XML document to a file using the specified XmlWriter, XML namespaces, and encoding.

Namespace:   System.Xml.Serialization
Assembly:  System.Xml (in System.Xml.dll)

public:
void Serialize(
	XmlWriter^ xmlWriter,
	Object^ o,
	XmlSerializerNamespaces^ namespaces,
	String^ encodingStyle,
	String^ id
)

Parameters

xmlWriter
Type: System.Xml::XmlWriter^

The XmlWriter used to write the XML document.

o
Type: System::Object^

The object to serialize.

namespaces
Type: System.Xml.Serialization::XmlSerializerNamespaces^

An instance of the XmlSerializaerNamespaces that contains namespaces and prefixes to use.

encodingStyle
Type: System::String^

The encoding used in the document.

id
Type: System::String^

For SOAP encoded messages, the base used to generate id attributes.

The id parameter supplies the base string used to create SOAP ids. By default, these are "id1", "id2" and so on. But if the parameter is set to "myBase" the generated values are "myBaseid1", "myBaseid2" and so on. This functionality is used to create unique id values across the whole SOAP message.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft