XmlSerializationWriter::WriteStartElement Method (String^, String^, Object^, Boolean, XmlSerializerNamespaces^)

 

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

Writes an opening element tag, including any attributes.

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

protected:
void WriteStartElement(
	String^ name,
	String^ ns,
	Object^ o,
	bool writePrefixed,
	XmlSerializerNamespaces^ xmlns
)

Parameters

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.

o
Type: System::Object^

The object being serialized as an XML element.

writePrefixed
Type: System::Boolean

true to write the element name with a prefix if none is available for the specified namespace; otherwise, false.

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

An instance of the XmlSerializerNamespaces class that contains prefix and namespace pairs to be used in the generated XML.

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