19 references to WorkflowInstance
System.Workflow.Runtime (19)
DebugEngine\DebugController.cs (5)
656
InstanceCompleted(sender, new WorkflowEventArgs(((WorkflowExecutor)sender).
WorkflowInstance
));
659
InstanceTerminated(sender, new WorkflowEventArgs(((WorkflowExecutor)sender).
WorkflowInstance
));
662
InstanceUnloaded(sender, new WorkflowEventArgs(((WorkflowExecutor)sender).
WorkflowInstance
));
690
LoadExistingInstance(((WorkflowExecutor)sender).
WorkflowInstance
, true);
692
LoadExistingInstance(((WorkflowExecutor)sender).
WorkflowInstance
, false);
Lock.cs (1)
270
workflowExec.
WorkflowInstance
.DeadWorkflow = workflowExec;
WorkflowExecutor.cs (2)
284
_workflowInstance = previousWorkflowExecutor.
WorkflowInstance
;
2797
return new WaitCallback(this.
WorkflowInstance
.ProcessTimers);
WorkflowRuntime.cs (11)
261
return executor.
WorkflowInstance
;
270
lSchedules.Add(executor.
WorkflowInstance
);
423
return executor.
WorkflowInstance
;
638
WorkflowInstance scheduleInstance = executor.
WorkflowInstance
;
788
WorkflowEventArgs args = new WorkflowEventArgs(sched.
WorkflowInstance
);
1224
WorkflowCreated(this, new WorkflowEventArgs(exec.
WorkflowInstance
));
1228
WorkflowStarted(this, new WorkflowEventArgs(exec.
WorkflowInstance
));
1243
OnScheduleTerminated(exec, new WorkflowTerminatedEventArgs(exec.
WorkflowInstance
, args.Exception));
1245
OnScheduleTerminated(exec, new WorkflowTerminatedEventArgs(exec.
WorkflowInstance
, args.Error));
1253
OnScheduleSuspended(exec, new WorkflowSuspendedEventArgs(exec.
WorkflowInstance
, sargs.Error));
1271
WorkflowCompletedEventArgs args = new WorkflowCompletedEventArgs(exec.
WorkflowInstance
, exec.WorkflowDefinition);