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.

NetDataContractSerializer::WriteStartObject Method (XmlDictionaryWriter^, Object^)

 

Writes the opening XML element using an XmlDictionaryWriter.

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

public:
virtual void WriteStartObject(
	XmlDictionaryWriter^ writer,
	Object^ graph
) override

Parameters

writer
Type: System.Xml::XmlDictionaryWriter^

The XmlDictionaryWriter used to write the XML element.

graph
Type: System::Object^

The object to serialize. All child objects of this root object are automatically serialized.

Exception Condition
InvalidDataContractException

the type being serialized does not conform to data contract rules. For example, the DataContractAttribute attribute has not been applied to the type.

SerializationException

there is a problem with the instance being serialized.

QuotaExceededException

the maximum number of object to serialize has been exceeded. Check the MaxItemsInObjectGraph property.

The following example creates an object to serialize, an instance of the NetDataContractSerializer, and an instance of the XmlDictionaryWriter class. The example uses the WriteStartObject, WriteObjectContent, and WriteEndObject methods to write the object data into the XML document.

No code example is currently available or this language may not be supported.

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