Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataContractSerializer::KnownTypes Property

 

Gets a collection of types that may be present in the object graph serialized using this instance of the DataContractSerializer.

Namespace:   System.Runtime.Serialization
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
Return to top
Show:
© 2017 Microsoft