DataContractJsonSerializer Constructor (Type, String, IEnumerable<Type>, Int32, Boolean, IDataContractSurrogate, Boolean)
.NET Framework 4
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.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
public DataContractJsonSerializer( Type type, string rootName, IEnumerable<Type> knownTypes, int maxItemsInObjectGraph, bool ignoreExtensionDataObject, IDataContractSurrogate dataContractSurrogate, bool alwaysEmitTypeInformation )
Parameters
- type
- Type: System.Type
The type of the instances that is serialized or deserialized.
- rootName
- Type: System.String
The name of the XML element that encloses the content to serialize or deserialize. The default is "root".
- knownTypes
- Type: System.Collections.Generic.IEnumerable<Type>
An IEnumerable<T> of Type that contains the types that may be present in the object graph.
- maxItemsInObjectGraph
- Type: System.Int32
The maximum number of items in the graph to serialize or deserialize. The default is the value returned by the MaxValue property.
- ignoreExtensionDataObject
- Type: System.Boolean
true to ignore the IExtensibleDataObject interface upon serialization and ignore unexpected data upon deserialization; otherwise, false. The default is false.
- dataContractSurrogate
- Type: System.Runtime.Serialization.IDataContractSurrogate
An implementation of the IDataContractSurrogate to customize the serialization process.
- alwaysEmitTypeInformation
- Type: System.Boolean
true to emit type information; otherwise, false. The default is false.
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.