XmlSerializationWriter::WriteTypedPrimitive Method (String^, String^, Object^, Boolean)

 

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

Writes an XML element whose text body is a value of a simple XML Schema data type.

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

protected:
void WriteTypedPrimitive(
	String^ name,
	String^ ns,
	Object^ o,
	bool xsiType
)

Parameters

name
Type: System::String^

The local name of the element to write.

ns
Type: System::String^

The namespace of the element to write.

o
Type: System::Object^

The object to be serialized in the element body.

xsiType
Type: System::Boolean

true if the XML element explicitly specifies the text value's type using the xsi:type attribute; otherwise, false.

The protected members of XmlSerializationWriter are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.

The xsi:type attribute explicitly indicates the XML Schema data type. The prefix xsi refers to the XML Schema instance namespace.

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