1 write to Mapping
System.Xml (1)
System\Xml\Serialization\XmlSerializer.cs (1)
881
this.
Mapping
= mapping;
18 references to Mapping
System.Xml (18)
System\Xml\Serialization\XmlSerializer.cs (18)
534
pendingMappings[index++] = mappingKey.
Mapping
;
542
serializers[index] = (XmlSerializer)contract.TypedSerializers[mappingKey.
Mapping
.Key];
543
serializers[index].SetTempAssembly(tempAssembly, mappingKey.
Mapping
);
889
if (this.
Mapping
.Key != other.
Mapping
.Key)
892
if (this.
Mapping
.ElementName != other.
Mapping
.ElementName)
895
if (this.
Mapping
.Namespace != other.
Mapping
.Namespace)
898
if (this.
Mapping
.IsSoap != other.
Mapping
.IsSoap)
905
int hashCode = this.
Mapping
.IsSoap ? 0 : 1;
907
if (this.
Mapping
.Key != null)
908
hashCode ^= this.
Mapping
.Key.GetHashCode();
910
if (this.
Mapping
.ElementName != null)
911
hashCode ^= this.
Mapping
.ElementName.GetHashCode();
913
if (this.
Mapping
.Namespace != null)
914
hashCode ^= this.
Mapping
.Namespace.GetHashCode();