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