System.Runtime.Serialization.XsdDataContractImporter.GetKnownTypeReferences C# (CSharp) Method

GetKnownTypeReferences() public method

public GetKnownTypeReferences ( XmlQualifiedName typeName ) : ICollection
typeName System.Xml.XmlQualifiedName
return ICollection
		public ICollection<CodeTypeReference> GetKnownTypeReferences (XmlQualifiedName typeName)
		{
			if (typeName == null)
				throw new ArgumentNullException ("typeName");

			return GetTypeInfo (typeName, true).KnownClrTypes;
		}