XmlObjectSerializer.WriteStartObject Method
.NET Framework 4
Writes only the starting XML element to an XML document or stream.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
WriteStartObject(XmlDictionaryWriter, Object) | Writes the start of the object's data as an opening XML element using the specified XmlDictionaryWriter. |
|
WriteStartObject(XmlWriter, Object) | Writes the start of the object's data as an opening XML element using the specified XmlWriter. |
The WriteStartObject, WriteObjectContent, and WriteEndObject methods must be implemented. The three methods are used in succession to write the complete serialization using the pattern: write start, write content, and write end. If the implementation writes using XML elements, attributes can be inserted before writing the contents of the object. The three methods are also called by the virtual implementation of the WriteObject method.