XmlObjectSerializer Class
Provides the base class used to serialize objects as XML streams or documents. This class is abstract.
System.Runtime.Serialization.XmlObjectSerializer
System.Runtime.Serialization.DataContractSerializer
System.Runtime.Serialization.Json.DataContractJsonSerializer
System.Runtime.Serialization.NetDataContractSerializer
Namespace: System.Runtime.Serialization
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
The XmlObjectSerializer type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() ![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() ![]() ![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() ![]() ![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() ![]() ![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() ![]() ![]() | IsStartObject(XmlDictionaryReader) | Gets a value that specifies whether the XmlDictionaryReader is positioned over an XML element that can be read. |
![]() ![]() ![]() | IsStartObject(XmlReader) | Gets a value that specifies whether the XmlReader is positioned over an XML element that can be read. |
![]() ![]() ![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() ![]() ![]() | ReadObject(Stream) | Reads the XML stream or document with a Stream and returns the deserialized object. |
![]() ![]() ![]() | ReadObject(XmlDictionaryReader) | Reads the XML document or stream with an XmlDictionaryReader and returns the deserialized object. |
![]() ![]() ![]() | ReadObject(XmlReader) | Reads the XML document or stream with an XmlReader and returns the deserialized object. |
![]() ![]() ![]() | ReadObject(XmlDictionaryReader, Boolean) | Reads the XML stream or document with an XmlDictionaryReader and returns the deserialized object; it also enables you to specify whether the serializer can read the data before attempting to read it. |
![]() ![]() ![]() | ReadObject(XmlReader, Boolean) | Reads the XML document or stream with an XmlReader and returns the deserialized object; it also enables you to specify whether the serializer can read the data before attempting to read it. |
![]() ![]() ![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() ![]() ![]() | WriteEndObject(XmlDictionaryWriter) | Writes the end of the object data as a closing XML element to the XML document or stream with an XmlDictionaryWriter. |
![]() ![]() ![]() | WriteEndObject(XmlWriter) | Writes the end of the object data as a closing XML element to the XML document or stream with an XmlWriter. |
![]() ![]() ![]() | WriteObject(Stream, Object) | Writes the complete content (start, content, and end) of the object to the XML document or stream with the specified Stream. |
![]() ![]() ![]() | WriteObject(XmlDictionaryWriter, Object) | Writes the complete content (start, content, and end) of the object to the XML document or stream with the specified XmlDictionaryWriter. |
![]() ![]() ![]() | WriteObject(XmlWriter, Object) | Writes the complete content (start, content, and end) of the object to the XML document or stream with the specified XmlWriter. |
![]() ![]() ![]() | WriteObjectContent(XmlDictionaryWriter, Object) | Writes only the content of the object to the XML document or stream using the specified XmlDictionaryWriter. |
![]() ![]() ![]() | WriteObjectContent(XmlWriter, Object) | Writes only the content of the object to the XML document or stream with the specified XmlWriter. |
![]() ![]() ![]() | 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. |
| 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. |
Extend the XmlObjectSerializer to create your own serializer to serialize and deserialize objects. Both the DataContractSerializer class and the NetDataContractSerializer class inherit from the XmlObjectSerializer and are used to serialize and deserialize objects that conform to data contract rules (objects created using the DataContractAttribute and the DataMemberAttribute).
Notes to InheritorsWhen you inherit from XmlObjectSerializer, you must override the following members: XmlObjectSerializer.WriteStartObject(XmlDictionaryWriter, Object), XmlObjectSerializer.WriteObjectContent(XmlDictionaryWriter, Object), XmlObjectSerializer.WriteEndObject(XmlDictionaryWriter). Additionally, the IsStartObject and ReadObject methods must be implemented for reading and deserializing.
The following example shows a method named WriteObjectWithInstance that includes an XmlObjectSerializer as a parameter. The method serializes an object using either the DataContractSerializer or NetDataContractSerializer by calling the WriteObject method.
public class Test { private void WriteObjectWithInstance(XmlObjectSerializer xm, Company graph, string fileName) { // Use either the XmlDataContractSerializer or NetDataContractSerializer, // or any other class that inherits from XmlObjectSerializer to write with. Console.WriteLine(xm.GetType()); FileStream fs = new FileStream(fileName, FileMode.Create); XmlDictionaryWriter writer = XmlDictionaryWriter.CreateTextWriter(fs); xm.WriteObject(writer, graph); Console.WriteLine("Done writing {0}", fileName); } private void Run() { // Create the object to write to a file. Company graph = new Company(); graph.Name = "cohowinery.com"; // Create a DataContractSerializer and a NetDataContractSerializer. // Pass either one to the WriteObjectWithInstance method. DataContractSerializer dcs = new DataContractSerializer(typeof(Company)); NetDataContractSerializer ndcs = new NetDataContractSerializer(); WriteObjectWithInstance(dcs, graph, @"datacontract.xml"); WriteObjectWithInstance(ndcs, graph, @"netDatacontract.xml"); } [DataContract] public class Company { [DataMember] public string Name; } static void Main() { try { Console.WriteLine("Starting"); Test t = new Test(); t.Run(); Console.WriteLine("Done"); Console.ReadLine(); } catch (InvalidDataContractException iExc) { Console.WriteLine("You have an invalid data contract: "); Console.WriteLine(iExc.Message); Console.ReadLine(); } catch (SerializationException serExc) { Console.WriteLine("There is a problem with the instance:"); Console.WriteLine(serExc.Message); Console.ReadLine(); } catch (QuotaExceededException qExc) { Console.WriteLine("The quota has been exceeded"); Console.WriteLine(qExc.Message); Console.ReadLine(); } catch (Exception exc) { Console.WriteLine(exc.Message); Console.WriteLine(exc.ToString()); Console.ReadLine(); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.


