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