XmlSerializationWriter::WriteSerializable Method (IXmlSerializable^, String^, String^, Boolean, Boolean)

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Instructs XmlNode to write an object that uses custom XML formatting as an XML element.

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

protected:
void WriteSerializable(
	IXmlSerializable^ serializable,
	String^ name,
	String^ ns,
	bool isNullable,
	bool wrapped
)

Parameters

serializable
Type: System.Xml.Serialization::IXmlSerializable^

An object that implements the IXmlSerializable interface that uses custom XML formatting.

name
Type: System::String^

The local name of the XML element to write.

ns
Type: System::String^

The namespace of the XML element to write.

isNullable
Type: System::Boolean

true to write an xsi:nil='true' attribute if the IXmlSerializable object is null; otherwise, false.

wrapped
Type: System::Boolean

true to ignore writing the opening element tag; otherwise, false to write the opening element tag.

.NET Framework
Available since 2.0
Silverlight
Available since 2.0
Return to top
Show: