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