ExportOptions::KnownTypes Property

 

Gets the collection of types that may be encountered during serialization or deserialization.

Namespace:   System.Runtime.Serialization
Assembly:  System.Runtime.Serialization (in System.Runtime.Serialization.dll)

public:
property Collection<Type^>^ KnownTypes {
	Collection<Type^>^ get();
}

Property Value

Type: System.Collections.ObjectModel::Collection<Type^>^

A KnownTypes collection that contains types that may be encountered during serialization or deserialization. XML schema representations are exported for all the types specified in this collection by the XsdDataContractExporter.

The KnownTypes property is used by the DataContractSerializer to include types that can be read in an object graph (set using the DataContractSerializer::KnownTypes property).

For more information about the data contract and known types, see Data Contract Known Types.

The following example creates an instance of the ExportOptions class and adds a type to the collection returned by the KnownTypes property.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: