1 write to rootTypeDataContract
dotnet-svcutil-lib (1)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlObjectSerializerContext.cs (1)
60this.rootTypeDataContract = rootTypeDataContract;
6 references to rootTypeDataContract
dotnet-svcutil-lib (6)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlObjectSerializerContext.cs (4)
287if (dataContract == null && rootTypeDataContract != null) 289if (rootTypeDataContract.StableName == qname) 290dataContract = rootTypeDataContract; 293CollectionDataContract collectionContract = rootTypeDataContract as CollectionDataContract;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlObjectSerializerWriteContext.cs (2)
161Type declaredType = rootTypeDataContract.UnderlyingType; 172verifyKnownType = WriteTypeInfo(xmlWriter, dataContract, rootTypeDataContract);