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)
51
if (!
_operationMap
.ContainsKey(operation.SyncMethod.MethodHandle.Value))
53
_operationMap
.Add(operation.SyncMethod.MethodHandle.Value, operation.Name);
59
if (!
_operationMap
.ContainsKey(operation.BeginMethod.MethodHandle.Value))
61
_operationMap
.Add(operation.BeginMethod.MethodHandle.Value, operation.Name);
62
_operationMap
.Add(operation.EndMethod.MethodHandle.Value, operation.Name);
68
if (!
_operationMap
.ContainsKey(operation.TaskMethod.MethodHandle.Value))
70
_operationMap
.Add(operation.TaskMethod.MethodHandle.Value, operation.Name);
84
if (
_operationMap
.ContainsKey(method.MethodHandle.Value))
86
return
_operationMap
[method.MethodHandle.Value];