1 write to _methods
System.Private.Xml (1)
System\Xml\Serialization\Compilation.cs (1)
111
_methods
= new TempMethodDictionary();
10 references to _methods
System.Private.Xml (10)
System\Xml\Serialization\Compilation.cs (10)
123
_methods
.Add(xmlMappings[i].Key!, method);
605
TempMethod method =
_methods
![mapping.Key!];
614
if (
_methods
![methodKey].isSoap)
628
if (
_methods
![methodKey].isSoap)
662
if (
_methods
![mapping.Key!].readMethod == null)
670
_methods
[mapping.Key!].readMethod = GetMethodFromType(reader.GetType(), methodName);
672
return
_methods
[mapping.Key!].readMethod!.Invoke(reader, Array.Empty<object>());
689
if (
_methods
![mapping.Key!].writeMethod == null)
697
_methods
[mapping.Key!].writeMethod = GetMethodFromType(writer.GetType(), methodName);
699
_methods
[mapping.Key!].writeMethod!.Invoke(writer, new object?[] { o });