1 write to controller
System.Activities (1)
System\Activities\Hosting\WorkflowInstance.cs (1)
447
this.
controller
= new WorkflowInstanceControl(this, this.executor);
9 references to controller
System.Activities (9)
System\Activities\Hosting\WorkflowInstance.cs (9)
174
return this.
controller
;
547
if (this.
controller
.TrackingEnabled)
550
this.
controller
.Track(new WorkflowInstanceUnhandledExceptionRecord(this.Id, this.WorkflowDefinition.DisplayName, faultSourceInfo, exception, this.DefinitionIdentity));
622
if (this.
controller
.TrackingEnabled)
632
this.
controller
.Track(new WorkflowInstanceAbortedRecord(this.Id, this.WorkflowDefinition.DisplayName, message, this.DefinitionIdentity));
697
if (this.
controller
.TrackingEnabled && !this.hasTrackedCompletion)
704
this.
controller
.Track(new WorkflowInstanceTerminatedRecord(this.Id, this.WorkflowDefinition.DisplayName, this.executor.TerminationException.Message, this.DefinitionIdentity));
708
this.
controller
.Track(new WorkflowInstanceRecord(this.Id, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Completed, this.DefinitionIdentity));
713
this.
controller
.Track(new WorkflowInstanceRecord(this.Id, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Canceled, this.DefinitionIdentity));