1 write to knownTypeList
System.Runtime.Serialization (1)
System\Runtime\Serialization\DataContractSerializer.cs (1)
156this.knownTypeList = new List<Type>();
6 references to knownTypeList
System.Runtime.Serialization (6)
System\Runtime\Serialization\DataContractSerializer.cs (5)
159this.knownTypeList.Add(knownType); 195if (knownTypeList != null) 197knownTypeCollection = new ReadOnlyCollection<Type>(knownTypeList); 212if (this.knownDataContracts == null && this.knownTypeList != null) 218this.knownDataContracts = XmlObjectSerializerContext.GetDataContractsForKnownTypes(this.knownTypeList);
System\Runtime\Serialization\XmlObjectSerializerContext.cs (1)
65this.serializerKnownTypeList = serializer.knownTypeList;