10 references to typeToExecutorMapping
System.Workflow.ComponentModel (10)
AuthoringOM\ActivityExecutor.cs (10)
185
if (!
typeToExecutorMapping
.Contains(activityExecutorsObjects[index].GetType()))
187
lock (
typeToExecutorMapping
.SyncRoot)
189
if (!
typeToExecutorMapping
.Contains(activityExecutorsObjects[index].GetType()))
192
typeToExecutorMapping
[activityExecutorsObjects[index].GetType()] = activityExecutorsObjects[index];
196
activityExecutors[index] = (ActivityExecutor)
typeToExecutorMapping
[activityExecutorsObjects[index].GetType()];
213
ActivityExecutor activityExecutor =
typeToExecutorMapping
[executorType] as ActivityExecutor;
217
lock (
typeToExecutorMapping
.SyncRoot)
219
activityExecutor =
typeToExecutorMapping
[executorType] as ActivityExecutor;
224
typeToExecutorMapping
[executorType] = Activator.CreateInstance(executorType);
226
return (ActivityExecutor)
typeToExecutorMapping
[executorType];