3 writes to XsiTypeNamespace
System.Private.DataContractSerialization (3)
System\Runtime\Serialization\Attributes.cs (2)
91XsiTypeNamespace = null; 137XmlObjectSerializerReadContext.ParseQualifiedName(xsiTypeString, reader, out XsiTypeName, out XsiTypeNamespace, out XsiTypePrefix);
System\Runtime\Serialization\Json\XmlObjectSerializerReadContextComplexJson.cs (1)
187attributes.XsiTypeNamespace = serverTypeNamespace;
6 references to XsiTypeNamespace
System.Private.DataContractSerialization (6)
System\Runtime\Serialization\XmlObjectSerializerReadContext.cs (6)
157DataContract? tempDataContract = ResolveDataContractFromKnownTypes(attributes.XsiTypeName, attributes.XsiTypeNamespace, dataContract, declaredType); 162throw XmlObjectSerializer.CreateSerializationException(XmlObjectSerializer.TryAddLineInfo(reader, SR.Format(SR.DcTypeNotFoundOnDeserialize, attributes.XsiTypeNamespace, attributes.XsiTypeName, reader.NamespaceURI, reader.LocalName))); 164throw XmlObjectSerializer.CreateSerializationException(XmlObjectSerializer.TryAddLineInfo(reader, SR.Format(SR.DcTypeNotResolvedOnDeserialize, attributes.XsiTypeNamespace, attributes.XsiTypeName, reader.NamespaceURI, reader.LocalName))); 594return (attributes.XsiTypeName == null) ? null : ResolveDataContractFromKnownTypes(attributes.XsiTypeName, attributes.XsiTypeNamespace, null /*memberTypeContract*/, null); 636dataContractNamespace = attributes.XsiTypeNamespace; 999childNode.Attributes!.Append(AddNamespaceDeclaration(_attributesInXmlData.XsiTypePrefix, _attributesInXmlData.XsiTypeNamespace));