1 write to _operationMap
System.ServiceModel.Primitives (1)
System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (1)
42_operationMap = new Dictionary<IntPtr, string>();
9 references to _operationMap
System.ServiceModel.Primitives (9)
System\ServiceModel\Dispatcher\OperationSelectorBehavior.cs (9)
51if (!_operationMap.ContainsKey(operation.SyncMethod.MethodHandle.Value)) 53_operationMap.Add(operation.SyncMethod.MethodHandle.Value, operation.Name); 59if (!_operationMap.ContainsKey(operation.BeginMethod.MethodHandle.Value)) 61_operationMap.Add(operation.BeginMethod.MethodHandle.Value, operation.Name); 62_operationMap.Add(operation.EndMethod.MethodHandle.Value, operation.Name); 68if (!_operationMap.ContainsKey(operation.TaskMethod.MethodHandle.Value)) 70_operationMap.Add(operation.TaskMethod.MethodHandle.Value, operation.Name); 84if (_operationMap.ContainsKey(method.MethodHandle.Value)) 86return _operationMap[method.MethodHandle.Value];