1 write to _methods
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Compilation.cs (1)
80
_methods
= new TempMethodDictionary();
10 references to _methods
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Compilation.cs (10)
92
_methods
.Add(xmlMappings[i].Key, method);
136
TempMethod method =
_methods
[mapping.Key];
144
if (
_methods
[methodKey].isSoap)
158
if (
_methods
[methodKey].isSoap)
174
if (
_methods
[mapping.Key].readMethod == null)
185
_methods
[mapping.Key].readMethod = GetMethodFromType(reader.GetType(), methodName, _pregeneratedAssmbly ? _assembly : null);
187
return
_methods
[mapping.Key].readMethod.Invoke(reader, s_emptyObjectArray);
208
if (
_methods
[mapping.Key].writeMethod == null)
219
_methods
[mapping.Key].writeMethod = GetMethodFromType(writer.GetType(), methodName, _pregeneratedAssmbly ? _assembly : null);
221
_methods
[mapping.Key].writeMethod.Invoke(writer, new object[] { o });