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