2 writes to _privateIfaceMethods
dotnet-svcutil-lib (2)
CodeDomFixup\CodeDomVisitors\MakeOldAsyncMethodsPrivate.cs (2)
27
_privateIfaceMethods
= new Dictionary<string, PrivateInterfaceMethod>();
67
_privateIfaceMethods
= null;
5 references to _privateIfaceMethods
dotnet-svcutil-lib (5)
CodeDomFixup\CodeDomVisitors\MakeOldAsyncMethodsPrivate.cs (5)
44
_privateIfaceMethods
[method.Name] = new PrivateInterfaceMethod(null);
53
if (!
_privateIfaceMethods
.ContainsKey(method.Name))
56
_privateIfaceMethods
.Add(method.Name, new PrivateInterfaceMethod(ifaceType));
74
if (
_privateIfaceMethods
!= null)
83
_privateIfaceMethods
.TryGetValue(methodInvoke.Method.MethodName, out targetMethod))