XsdDataContractImporter::GetKnownTypeReferences Method (XmlQualifiedName^)
Returns a list of CodeTypeReference objects that represents the known types generated when generating code for the specified schema type.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
public:
ICollection<CodeTypeReference^>^ GetKnownTypeReferences(
XmlQualifiedName^ typeName
)
Parameters
- typeName
-
Type:
System.Xml::XmlQualifiedName^
An XmlQualifiedName that represents the schema type to look up known types for.
Return Value
Type: System.Collections.Generic::ICollection<CodeTypeReference^>^A IList<T> of type CodeTypeReference.
When generating CLR types for schema types, known types are also generated for all derived types that are present in the schema. In many cases, these known types are added using attributes to the generated code. (For example, see the KnownTypeAttribute class. ) However, for the top-level type, there needs to be a way to return the set of known types generated. This method returns the CodeTypeReference for known types that were generated for a specific schema type.
For more information, see Data Contract Known Types.
Available since 3.0