1 write to Mapping
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializer.cs (1)
925this.Mapping = mapping;
18 references to Mapping
dotnet-svcutil-lib (18)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializer.cs (18)
618pendingMappings[index++] = mappingKey.Mapping; 627serializers[index] = (XmlSerializer)contract.TypedSerializers[mappingKey.Mapping.Key]; 628serializers[index].SetTempAssembly(tempAssembly, mappingKey.Mapping); 934if (this.Mapping.Key != other.Mapping.Key) 937if (this.Mapping.ElementName != other.Mapping.ElementName) 940if (this.Mapping.Namespace != other.Mapping.Namespace) 943if (this.Mapping.IsSoap != other.Mapping.IsSoap) 951int hashCode = this.Mapping.IsSoap ? 0 : 1; 953if (this.Mapping.Key != null) 954hashCode ^= this.Mapping.Key.GetHashCode(); 956if (this.Mapping.ElementName != null) 957hashCode ^= this.Mapping.ElementName.GetHashCode(); 959if (this.Mapping.Namespace != null) 960hashCode ^= this.Mapping.Namespace.GetHashCode();