1 write to Mapping
System.Private.Xml (1)
System\Xml\Serialization\XmlSerializer.cs (1)
1041
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
);
1050
if (this.
Mapping
.Key != other.
Mapping
.Key)
1053
if (this.
Mapping
.ElementName != other.
Mapping
.ElementName)
1056
if (this.
Mapping
.Namespace != other.
Mapping
.Namespace)
1059
if (this.
Mapping
.IsSoap != other.
Mapping
.IsSoap)
1067
int hashCode = this.
Mapping
.IsSoap ? 0 : 1;
1069
if (this.
Mapping
.Key != null)
1070
hashCode ^= this.
Mapping
.Key.GetHashCode();
1072
if (this.
Mapping
.ElementName != null)
1073
hashCode ^= this.
Mapping
.ElementName.GetHashCode();
1075
if (this.
Mapping
.Namespace != null)
1076
hashCode ^= this.
Mapping
.Namespace.GetHashCode();