1 write to Mapping
System.Private.Xml (1)
System\Xml\Serialization\XmlSerializer.cs (1)
1026this.Mapping = mapping;
18 references to Mapping
System.Private.Xml (18)
System\Xml\Serialization\XmlSerializer.cs (18)
732pendingMappings[index++] = mappingKey.Mapping; 741serializers[index] = (XmlSerializer)contract.TypedSerializers[mappingKey.Mapping.Key!]!; 742serializers[index]!.SetTempAssembly(tempAssembly, mappingKey.Mapping); 1035if (this.Mapping.Key != other.Mapping.Key) 1038if (this.Mapping.ElementName != other.Mapping.ElementName) 1041if (this.Mapping.Namespace != other.Mapping.Namespace) 1044if (this.Mapping.IsSoap != other.Mapping.IsSoap) 1052int hashCode = this.Mapping.IsSoap ? 0 : 1; 1054if (this.Mapping.Key != null) 1055hashCode ^= this.Mapping.Key.GetHashCode(); 1057if (this.Mapping.ElementName != null) 1058hashCode ^= this.Mapping.ElementName.GetHashCode(); 1060if (this.Mapping.Namespace != null) 1061hashCode ^= this.Mapping.Namespace.GetHashCode();