DataContractJsonSerializer Constructor (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.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
public: DataContractJsonSerializer( Type^ type, 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.
- knownTypes
-
Type:
System.Collections.Generic::IEnumerable<Type^>^
An XmlDictionaryString that contains the root element name of the content.
- maxItemsInObjectGraph
-
Type:
System::Int32
An IEnumerable<T> of Type that contains the types that may be present in the object graph.
- 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