1 write to Mapping
System.Private.Xml (1)
System\Xml\Serialization\XmlSerializer.cs (1)
1041this.Mapping = mapping;
18 references to Mapping
System.Private.Xml (18)
System\Xml\Serialization\XmlSerializer.cs (18)
731pendingMappings[index++] = mappingKey.Mapping; 740serializers[index] = (XmlSerializer)contract.TypedSerializers[mappingKey.Mapping.Key!]!; 741serializers[index]!.SetTempAssembly(tempAssembly, mappingKey.Mapping); 1050if (this.Mapping.Key != other.Mapping.Key) 1053if (this.Mapping.ElementName != other.Mapping.ElementName) 1056if (this.Mapping.Namespace != other.Mapping.Namespace) 1059if (this.Mapping.IsSoap != other.Mapping.IsSoap) 1067int hashCode = this.Mapping.IsSoap ? 0 : 1; 1069if (this.Mapping.Key != null) 1070hashCode ^= this.Mapping.Key.GetHashCode(); 1072if (this.Mapping.ElementName != null) 1073hashCode ^= this.Mapping.ElementName.GetHashCode(); 1075if (this.Mapping.Namespace != null) 1076hashCode ^= this.Mapping.Namespace.GetHashCode();