DataContractJsonSerializer Constructor (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.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
public: DataContractJsonSerializer( Type^ type, XmlDictionaryString^ rootName, IEnumerable<Type^>^ knownTypes, int maxItemsInObjectGraph, bool ignoreExtensionDataObject, IDataContractSurrogate^ dataContractSurrogate, bool alwaysEmitTypeInformation )
Parameters
- type
-
Type:
System::Type^
The type of the instances that are serialized or deserialized.
- rootName
-
Type:
System.Xml::XmlDictionaryString^
An XmlDictionaryString that contains the root element name of the content.
- knownTypes
-
Type:
System.Collections.Generic::IEnumerable<Type^>^
An IEnumerable<T> of Type that contains the known 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.
Available since 3.5