DataContractJsonSerializer Class
Serializes objects to the JavaScript Object Notation (JSON) and deserializes JSON data to objects. This class cannot be inherited.
System.Runtime.Serialization::XmlObjectSerializer
System.Runtime.Serialization.Json::DataContractJsonSerializer
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
The DataContractJsonSerializer type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | DataContractJsonSerializer(Type) | Initializes a new instance of the DataContractJsonSerializer class to serialize or deserialize an object of the specified type. |
![]() | DataContractJsonSerializer(Type, IEnumerable<Type>) | Initializes a new instance of the DataContractJsonSerializer class to serialize or deserialize an object of the specified type, with a collection of known types that may be present in the object graph. |
![]() | DataContractJsonSerializer(Type, String) | Initializes a new instance of the DataContractJsonSerializer class to serialize or deserialize an object of a specified type using the XML root element specified by a parameter. |
![]() | DataContractJsonSerializer(Type, XmlDictionaryString) | Initializes a new instance of the DataContractJsonSerializer class to serialize or deserialize an object of a specified type using the XML root element specified by a parameter of type XmlDictionaryString. |
![]() | DataContractJsonSerializer(Type, String, IEnumerable<Type>) | Initializes a new instance of the DataContractJsonSerializer class to serialize or deserialize an object of a specified type using the XML root element specified by a parameter, with a collection of known types that may be present in the object graph. |
![]() | DataContractJsonSerializer(Type, XmlDictionaryString, IEnumerable<Type>) | Initializes a new instance of the DataContractJsonSerializer class to serialize or deserialize an object of a specified type using the XML root element specified by a parameter of type XmlDictionaryString, with a collection of known types that may be present in the object graph. |
![]() | DataContractJsonSerializer(Type, IEnumerable<Type>, Int32, Boolean, IDataContractSurrogate, Boolean) | Initializes a new instance of the DataContractJsonSerializer class to serialize or deserialize an object of the specified type. This method also specifies a list of known types that may be present in the object graph, the maximum number of graph items to serialize or deserialize, whether to ignore unexpected data or emit type information, and a surrogate for custom serialization. |
![]() | DataContractJsonSerializer(Type, String, IEnumerable<Type>, Int32, Boolean, IDataContractSurrogate, Boolean) | Initializes a new instance of the DataContractJsonSerializer class to serialize or deserialize an object of the specified type. This method also specifies the root name of the XML element, a list of known types that may be present in the object graph, the maximum number of graph items to serialize or deserialize, whether to ignore unexpected data or emit type information, and a surrogate for custom serialization. |
![]() | DataContractJsonSerializer(Type, XmlDictionaryString, IEnumerable<Type>, Int32, Boolean, IDataContractSurrogate, Boolean) | Initializes a new instance of the DataContractJsonSerializer class to serialize or deserialize an object of the specified type. This method also specifies the root name of the XML element, a list of known types that may be present in the object graph, the maximum number of graph items to serialize or deserialize, whether to ignore unexpected data or emit type information, and a surrogate for custom serialization. |
| Name | Description | |
|---|---|---|
![]() | DataContractSurrogate | Gets a surrogate type that is currently active for a given IDataContractSurrogate instance. Surrogates can extend the serialization or deserialization process. |
![]() | IgnoreExtensionDataObject | Gets a value that specifies whether unknown data is ignored on deserialization and whether the IExtensibleDataObject interface is ignored on serialization. |
![]() | KnownTypes | Gets a collection of types that may be present in the object graph serialized using this instance of the DataContractJsonSerializer. |
![]() | MaxItemsInObjectGraph | Gets the maximum number of items in an object graph that the serializer serializes or deserializes in one read or write call. |
| 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 represents an object the serializer can deserialize from. (Overrides XmlObjectSerializer::IsStartObject(XmlDictionaryReader).) |
![]() | IsStartObject(XmlReader) | Determines whether the XmlReader is positioned on an object that can be deserialized. (Overrides XmlObjectSerializer::IsStartObject(XmlReader).) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ReadObject(Stream) | Reads a document stream in the JSON (JavaScript Object Notation) format and returns the deserialized object. (Overrides XmlObjectSerializer::ReadObject(Stream).) |
![]() | ReadObject(XmlDictionaryReader) | Reads the XML document mapped from JSON (JavaScript Object Notation) with an XmlDictionaryReader and returns the deserialized object. (Overrides XmlObjectSerializer::ReadObject(XmlDictionaryReader).) |
![]() | ReadObject(XmlReader) | Reads the XML document mapped from JSON (JavaScript Object Notation) with an XmlReader and returns the deserialized object. (Overrides XmlObjectSerializer::ReadObject(XmlReader).) |
![]() | ReadObject(XmlDictionaryReader, Boolean) | Reads the XML document mapped from JSON with an XmlDictionaryReader and returns the deserialized object; it also enables you to specify whether the serializer should verify that it is positioned on an appropriate element before attempting to deserialize. (Overrides XmlObjectSerializer::ReadObject(XmlDictionaryReader, Boolean).) |
![]() | ReadObject(XmlReader, Boolean) | Reads an XML document mapped from JSON with an XmlReader and returns the deserialized object; it also enables you to specify whether the serializer should verify that it is positioned on an appropriate element before attempting to deserialize. (Overrides XmlObjectSerializer::ReadObject(XmlReader, Boolean).) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | WriteEndObject(XmlDictionaryWriter) | Writes the closing XML element to an XML document, using an XmlDictionaryWriter, which can be mapped to JavaScript Object Notation (JSON). (Overrides XmlObjectSerializer::WriteEndObject(XmlDictionaryWriter).) |
![]() | WriteEndObject(XmlWriter) | Writes the closing XML element to an XML document, using an XmlWriter, which can be mapped to JavaScript Object Notation (JSON). (Overrides XmlObjectSerializer::WriteEndObject(XmlWriter).) |
![]() | WriteObject(Stream, Object) | Serializes a specified object to JavaScript Object Notation (JSON) data and writes the resulting JSON to a stream. (Overrides XmlObjectSerializer::WriteObject(Stream, Object).) |
![]() | WriteObject(XmlDictionaryWriter, Object) | Serializes an object to XML that may be mapped to JavaScript Object Notation (JSON). Writes all the object data, including the starting XML element, content, and closing element, with an XmlDictionaryWriter. (Overrides XmlObjectSerializer::WriteObject(XmlDictionaryWriter, Object).) |
![]() | WriteObject(XmlWriter, Object) | Serializes an object to XML that may be mapped to JavaScript Object Notation (JSON). Writes all the object data, including the starting XML element, content, and closing element, with an XmlWriter. (Overrides XmlObjectSerializer::WriteObject(XmlWriter, Object).) |
![]() | WriteObjectContent(XmlDictionaryWriter, Object) | Writes the XML content that can be mapped to JavaScript Object Notation (JSON) using an XmlDictionaryWriter. (Overrides XmlObjectSerializer::WriteObjectContent(XmlDictionaryWriter, Object).) |
![]() | WriteObjectContent(XmlWriter, Object) | Writes the XML content that can be mapped to JavaScript Object Notation (JSON) using an XmlWriter. (Overrides XmlObjectSerializer::WriteObjectContent(XmlWriter, Object).) |
![]() | WriteStartObject(XmlDictionaryWriter, Object) | Writes the opening XML element for serializing an object to XML that can be mapped to JavaScript Object Notation (JSON) using an XmlDictionaryWriter. (Overrides XmlObjectSerializer::WriteStartObject(XmlDictionaryWriter, Object).) |
![]() | WriteStartObject(XmlWriter, Object) | Writes the opening XML element for serializing an object to XML that can be mapped to JavaScript Object Notation (JSON) using an XmlWriter. (Overrides XmlObjectSerializer::WriteStartObject(XmlWriter, Object).) |
Use the DataContractJsonSerializer class to serialize instances of a type into a JSON document and to deserialize a JSON document into an instance of a type. For example, you can create a type named Person with properties that contain essential data, such as a name and address. You can then create and manipulate an instance of the Person class and write all of its property values in a JSON document for later retrieval. This JSON document can later be deserialized into the Person class or another class with an equivalent data contract.
If an error occurs during the serialization of an outgoing reply on the server or the reply operation throws an exception for some other reason, it may not get returned to the client as a fault.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
