1 write to Mapping
System.Private.Xml (1)
System\Xml\Serialization\XmlSerializer.cs (1)
1025this.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); 1034if (this.Mapping.Key != other.Mapping.Key) 1037if (this.Mapping.ElementName != other.Mapping.ElementName) 1040if (this.Mapping.Namespace != other.Mapping.Namespace) 1043if (this.Mapping.IsSoap != other.Mapping.IsSoap) 1051int hashCode = this.Mapping.IsSoap ? 0 : 1; 1053if (this.Mapping.Key != null) 1054hashCode ^= this.Mapping.Key.GetHashCode(); 1056if (this.Mapping.ElementName != null) 1057hashCode ^= this.Mapping.ElementName.GetHashCode(); 1059if (this.Mapping.Namespace != null) 1060hashCode ^= this.Mapping.Namespace.GetHashCode();