1 write to knownTypeList
dotnet-svcutil-lib (1)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContractSerializer.cs (1)
112this.knownTypeList = new List<Type>();
6 references to knownTypeList
dotnet-svcutil-lib (6)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContractSerializer.cs (5)
115this.knownTypeList.Add(knownType); 150if (knownTypeList != null) 152_knownTypeCollection = new ReadOnlyCollection<Type>(knownTypeList); 167if (this.knownDataContracts == null && this.knownTypeList != null) 173this.knownDataContracts = XmlObjectSerializerContext.GetDataContractsForKnownTypes(this.knownTypeList);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlObjectSerializerContext.cs (1)
61this.serializerKnownTypeList = serializer.knownTypeList;