DataContractSerializer::KnownTypes Property
.NET Framework (current version)
Gets a collection of types that may be present in the object graph serialized using this instance of the DataContractSerializer.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
public: property ReadOnlyCollection<Type^>^ KnownTypes { ReadOnlyCollection<Type^>^ get(); }
Property Value
Type: System.Collections.ObjectModel::ReadOnlyCollection<Type^>^A ReadOnlyCollection<T> that contains the expected types passed in as known types to the DataContractSerializer constructor.
The KnownTypes property provides the set of known types that are used for serialization and deserialization. For example, if an instance of the Hashtable class contains instances of a Person class, add the Person type to an instance of the List<T> class and use the instance to construct an instance of the DataContractSerializer. If you know of other types to add to the Hashtable, then add those types to the collection.
Universal Windows Platform
Available since 8
.NET Framework
Available since 3.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 3.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: