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