3 instantiations of WorkflowRuntimeEventArgs
System.Workflow.Runtime (3)
DebugEngine\DebugController.cs (1)
646
Stop(null, new
WorkflowRuntimeEventArgs
(false));
WorkflowRuntime.cs (2)
1176
ss(this, new
WorkflowRuntimeEventArgs
(isInstanceStarted));
1377
handler(this, new
WorkflowRuntimeEventArgs
(isInstanceStarted));
9 references to WorkflowRuntimeEventArgs
System.Workflow.Runtime (9)
DebugEngine\DebugController.cs (3)
464
Stop(null, default(
WorkflowRuntimeEventArgs
));
595
private void Start(object source,
WorkflowRuntimeEventArgs
e)
617
private void Stop(object source,
WorkflowRuntimeEventArgs
e)
Hosting\WorkflowRuntimeService.cs (2)
90
private void HandleStarted(object source,
WorkflowRuntimeEventArgs
e)
96
private void HandleStopped(object source,
WorkflowRuntimeEventArgs
e)
WorkflowRuntime.cs (4)
461
public event EventHandler<
WorkflowRuntimeEventArgs
> Stopped;
462
public event EventHandler<
WorkflowRuntimeEventArgs
> Started;
1174
EventHandler<
WorkflowRuntimeEventArgs
> ss = Started;
1375
EventHandler<
WorkflowRuntimeEventArgs
> handler = Stopped;