1 write to _methods
System.Private.Xml (1)
System\Xml\Serialization\Compilation.cs (1)
110
_methods
= new TempMethodDictionary();
10 references to _methods
System.Private.Xml (10)
System\Xml\Serialization\Compilation.cs (10)
122
_methods
.Add(xmlMappings[i].Key!, method);
558
TempMethod method =
_methods
![mapping.Key!];
567
if (
_methods
![methodKey].isSoap)
581
if (
_methods
![methodKey].isSoap)
615
if (
_methods
![mapping.Key!].readMethod == null)
623
_methods
[mapping.Key!].readMethod = GetMethodFromType(reader.GetType(), methodName);
625
return
_methods
[mapping.Key!].readMethod!.Invoke(reader, Array.Empty<object>());
642
if (
_methods
![mapping.Key!].writeMethod == null)
650
_methods
[mapping.Key!].writeMethod = GetMethodFromType(writer.GetType(), methodName);
652
_methods
[mapping.Key!].writeMethod!.Invoke(writer, new object?[] { o });