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