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