3 types derived from WorkflowEventArgs
System.Workflow.Runtime (3)
WorkflowEventArgs.cs (3)
41public class WorkflowCompletedEventArgs : WorkflowEventArgs 90public class WorkflowSuspendedEventArgs : WorkflowEventArgs 110public class WorkflowTerminatedEventArgs : WorkflowEventArgs
7 instantiations of WorkflowEventArgs
System.Workflow.Runtime (7)
DebugEngine\DebugController.cs (3)
656InstanceCompleted(sender, new WorkflowEventArgs(((WorkflowExecutor)sender).WorkflowInstance)); 659InstanceTerminated(sender, new WorkflowEventArgs(((WorkflowExecutor)sender).WorkflowInstance)); 662InstanceUnloaded(sender, new WorkflowEventArgs(((WorkflowExecutor)sender).WorkflowInstance));
WorkflowRuntime.cs (4)
641WorkflowIdled(this, new WorkflowEventArgs(scheduleInstance)); 788WorkflowEventArgs args = new WorkflowEventArgs(sched.WorkflowInstance); 1224WorkflowCreated(this, new WorkflowEventArgs(exec.WorkflowInstance)); 1228WorkflowStarted(this, new WorkflowEventArgs(exec.WorkflowInstance));
19 references to WorkflowEventArgs
System.Workflow.Runtime (14)
DebugEngine\DebugController.cs (3)
701private void InstanceCompleted(object sender, WorkflowEventArgs args) 714private void InstanceTerminated(object sender, WorkflowEventArgs args) 727private void InstanceUnloaded(object sender, WorkflowEventArgs args)
WorkflowRuntime.cs (11)
448public event EventHandler<WorkflowEventArgs> WorkflowIdled; 449public event EventHandler<WorkflowEventArgs> WorkflowCreated; 450public event EventHandler<WorkflowEventArgs> WorkflowStarted; 451public event EventHandler<WorkflowEventArgs> WorkflowLoaded; 452public event EventHandler<WorkflowEventArgs> WorkflowUnloaded; 455public event EventHandler<WorkflowEventArgs> WorkflowAborted; 457public event EventHandler<WorkflowEventArgs> WorkflowPersisted; 458public event EventHandler<WorkflowEventArgs> WorkflowResumed; 459internal event EventHandler<WorkflowEventArgs> WorkflowDynamicallyChanged; 783private void _OnServiceEvent(WorkflowExecutor sched, bool unregister, EventHandler<WorkflowEventArgs> handler) 788WorkflowEventArgs args = new WorkflowEventArgs(sched.WorkflowInstance);
System.WorkflowServices (5)
System\ServiceModel\Dispatcher\WorkflowInstanceLifeTimeManagerExtension.cs (5)
233void OnWorkflowAborted(object sender, WorkflowEventArgs args) 253void OnWorkflowIdled(object sender, WorkflowEventArgs args) 262void OnWorkflowLoaded(object sender, WorkflowEventArgs args) 282void OnWorkflowStarted(object sender, WorkflowEventArgs args) 312void OnWorkflowUnloaded(object sender, WorkflowEventArgs args)