.NET Framework Class Library
DataContractJsonSerializer Constructor (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.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
Syntax
Visual Basic
Public Sub New ( _ type As Type, _ knownTypes As IEnumerable(Of Type) _ )
C#
public DataContractJsonSerializer(
Type type,
IEnumerable<Type> knownTypes
)
Visual C++
public:
DataContractJsonSerializer(
Type^ type,
IEnumerable<Type^>^ knownTypes
)
F#
new : type:Type * knownTypes:IEnumerable<Type> -> DataContractJsonSerializer
Parameters
- type
- Type: System.Type
The type of the instances that are serialized or deserialized.
- knownTypes
- Type: System.Collections.Generic.IEnumerable<Type>
An IEnumerable<T> of Type that contains the types that may be present in the object graph.
Version Information
.NET Framework
Supported in: 4, 3.5.NET Framework Client Profile
Supported in: 4, 3.5 SP1Platforms
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.
See Also