10 references to targetSerializerTable
System.Messaging (10)
System\Messaging\XmlMessageFormatter.cs (10)
131
foreach (XmlSerializer serializer in
targetSerializerTable
.Values)
156
foreach (Type targetType in
targetSerializerTable
.Keys)
157
formatter.
targetSerializerTable
[targetType] = new XmlSerializer(targetType);
172
this.
targetSerializerTable
[targetType] = new XmlSerializer(targetType);
181
this.
targetSerializerTable
[this.targetTypes[index]] = new XmlSerializer(this.targetTypes[index]);
186
if (this.
targetSerializerTable
.Count == 0)
206
foreach (XmlSerializer serializer in
targetSerializerTable
.Values)
231
if (this.
targetSerializerTable
.ContainsKey(serializedType))
232
serializer = (XmlSerializer)this.
targetSerializerTable
[serializedType];
236
this.
targetSerializerTable
[serializedType] = serializer;