1 write to Mapping
System.Private.Xml (1)
System\Xml\Serialization\XmlSerializer.cs (1)
1025
this.
Mapping
= mapping;
18 references to Mapping
System.Private.Xml (18)
System\Xml\Serialization\XmlSerializer.cs (18)
731
pendingMappings[index++] = mappingKey.
Mapping
;
740
serializers[index] = (XmlSerializer)contract.TypedSerializers[mappingKey.
Mapping
.Key!]!;
741
serializers[index]!.SetTempAssembly(tempAssembly, mappingKey.
Mapping
);
1034
if (this.
Mapping
.Key != other.
Mapping
.Key)
1037
if (this.
Mapping
.ElementName != other.
Mapping
.ElementName)
1040
if (this.
Mapping
.Namespace != other.
Mapping
.Namespace)
1043
if (this.
Mapping
.IsSoap != other.
Mapping
.IsSoap)
1051
int hashCode = this.
Mapping
.IsSoap ? 0 : 1;
1053
if (this.
Mapping
.Key != null)
1054
hashCode ^= this.
Mapping
.Key.GetHashCode();
1056
if (this.
Mapping
.ElementName != null)
1057
hashCode ^= this.
Mapping
.ElementName.GetHashCode();
1059
if (this.
Mapping
.Namespace != null)
1060
hashCode ^= this.
Mapping
.Namespace.GetHashCode();