1 write to Mapping
System.Private.Xml (1)
System\Xml\Serialization\XmlSerializer.cs (1)
1055this.Mapping = mapping;
18 references to Mapping
System.Private.Xml (18)
System\Xml\Serialization\XmlSerializer.cs (18)
735pendingMappings[index++] = mappingKey.Mapping; 744serializers[index] = (XmlSerializer)contract.TypedSerializers[mappingKey.Mapping.Key!]!; 745serializers[index]!.SetTempAssembly(tempAssembly, mappingKey.Mapping); 1064if (this.Mapping.Key != other.Mapping.Key) 1067if (this.Mapping.ElementName != other.Mapping.ElementName) 1070if (this.Mapping.Namespace != other.Mapping.Namespace) 1073if (this.Mapping.IsSoap != other.Mapping.IsSoap) 1081int hashCode = this.Mapping.IsSoap ? 0 : 1; 1083if (this.Mapping.Key != null) 1084hashCode ^= this.Mapping.Key.GetHashCode(); 1086if (this.Mapping.ElementName != null) 1087hashCode ^= this.Mapping.ElementName.GetHashCode(); 1089if (this.Mapping.Namespace != null) 1090hashCode ^= this.Mapping.Namespace.GetHashCode();