25 references to WorkflowInstanceStates
System.Activities (19)
System\Activities\Hosting\WorkflowInstance.cs (4)
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)); 728this.TrackingProvider.AddRecord(new WorkflowInstanceRecord(this.Id, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Started, this.DefinitionIdentity)); 733this.TrackingProvider.AddRecord(new WorkflowInstanceRecord(this.Id, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Resumed, this.DefinitionIdentity));
System\Activities\Tracking\WorkflowInstanceAbortedRecord.cs (2)
19: base(instanceId, activityDefinitionId, WorkflowInstanceStates.Aborted) 29: base(instanceId, recordNumber, activityDefinitionId, WorkflowInstanceStates.Aborted)
System\Activities\Tracking\WorkflowInstanceSuspendedRecord.cs (2)
19: base(instanceId, activityDefinitionId, WorkflowInstanceStates.Suspended) 29: base(instanceId, recordNumber, activityDefinitionId, WorkflowInstanceStates.Suspended)
System\Activities\Tracking\WorkflowInstanceTerminatedRecord.cs (2)
20: base(instanceId, activityDefinitionId, WorkflowInstanceStates.Terminated) 31: base(instanceId, recordNumber, activityDefinitionId, WorkflowInstanceStates.Terminated)
System\Activities\Tracking\WorkflowInstanceUnhandledExceptionRecord.cs (1)
26: base(instanceId, recordNumber, activityDefinitionId, WorkflowInstanceStates.UnhandledException)
System\Activities\Tracking\WorkflowInstanceUpdatedRecord.cs (4)
22: base(instanceId, activityDefinitionId, WorkflowInstanceStates.Updated, updatedDefinitionIdentity) 28: base(instanceId, activityDefinitionId, WorkflowInstanceStates.UpdateFailed, updatedDefinitionIdentity) 35: base(instanceId, recordNumber, activityDefinitionId, WorkflowInstanceStates.Updated, updatedDefinitionIdentity) 41: base(instanceId, recordNumber, activityDefinitionId, WorkflowInstanceStates.UpdateFailed, updatedDefinitionIdentity)
System\Activities\WorkflowApplication.cs (4)
2271this.Controller.Track(new WorkflowInstanceRecord(this.Id, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Deleted, this.DefinitionIdentity)); 2275this.Controller.Track(new WorkflowInstanceRecord(this.Id, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Unloaded, this.DefinitionIdentity)); 2279this.Controller.Track(new WorkflowInstanceRecord(this.Id, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Persisted, this.DefinitionIdentity)); 4966instance.Controller.Track(new WorkflowInstanceRecord(instance.Id, instance.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Idle, instance.DefinitionIdentity));
System.ServiceModel.Activities (6)
System\ServiceModel\Activities\Dispatcher\WorkflowServiceInstance.cs (6)
1285this.Controller.Track(new WorkflowInstanceRecord(this.Id, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Idle, this.DefinitionIdentity)); 1505this.Controller.Track(new WorkflowInstanceRecord(this.Id, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Deleted, this.DefinitionIdentity)); 1510this.Controller.Track(new WorkflowInstanceRecord(this.Id, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Unloaded, this.DefinitionIdentity)); 1515this.Controller.Track(new WorkflowInstanceRecord(this.Id, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Persisted, this.DefinitionIdentity)); 4403this.Instance.Controller.Track(new WorkflowInstanceRecord(this.Instance.Id, this.Instance.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Unloaded, this.Instance.DefinitionIdentity)); 4763this.Instance.Controller.Track(new WorkflowInstanceRecord(this.Instance.Id, this.Instance.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Unsuspended, this.Instance.DefinitionIdentity));