Base:
property
Id
System.Activities.Hosting.WorkflowInstance.Id
27 references to Id
System.Activities (27)
System\Activities\WorkflowApplication.cs (26)
630
Fx.Assert(this.
Id
!= Guid.Empty, "should have a valid Id at this point");
631
this.persistenceManager = new PersistenceManager(this.instanceStore, GetInstanceMetadata(), this.
Id
);
1003
TD.WorkflowInstanceAborted(this.
Id
.ToString(), reason);
1024
Terminate(new WorkflowApplicationTerminatedException(reason, this.
Id
), timeout);
1081
return BeginTerminate(new WorkflowApplicationTerminatedException(reason, this.
Id
), timeout, callback, state);
2271
this.Controller.Track(new WorkflowInstanceRecord(this.
Id
, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Deleted, this.DefinitionIdentity));
2275
this.Controller.Track(new WorkflowInstanceRecord(this.
Id
, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Unloaded, this.DefinitionIdentity));
2279
this.Controller.Track(new WorkflowInstanceRecord(this.
Id
, this.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Persisted, this.DefinitionIdentity));
2380
TD.WorkflowApplicationUnloaded(this.
Id
.ToString());
2387
TD.WorkflowApplicationPersisted(this.
Id
.ToString());
2710
TD.WorkflowApplicationIdled(this.
Id
.ToString());
2905
throw FxTrace.Exception.AsError(new WorkflowApplicationAbortedException(SR.WorkflowApplicationAborted(this.
Id
), this.
Id
));
2917
throw FxTrace.Exception.AsError(new WorkflowApplicationTerminatedException(SR.WorkflowApplicationTerminated(this.
Id
), this.
Id
, completionException));
2921
throw FxTrace.Exception.AsError(new WorkflowApplicationCompletedException(SR.WorkflowApplicationCompleted(this.
Id
), this.
Id
));
2930
throw FxTrace.Exception.AsError(new WorkflowApplicationUnloadedException(SR.WorkflowApplicationUnloaded(this.
Id
), this.
Id
));
4966
instance.Controller.Track(new WorkflowInstanceRecord(instance.
Id
, instance.WorkflowDefinition.DisplayName, WorkflowInstanceStates.Idle, instance.DefinitionIdentity));
5013
TD.WorkflowApplicationPersistableIdle(application.
Id
.ToString(), action.ToString());
5043
TD.WorkflowApplicationPersistableIdle(application.
Id
.ToString(), PersistableIdleAction.None.ToString());
5151
TD.WorkflowApplicationCompleted(instance.
Id
.ToString());
5157
TD.WorkflowInstanceCanceled(instance.
Id
.ToString());
5163
TD.WorkflowApplicationTerminated(instance.
Id
.ToString(), completionException);
5284
TD.WorkflowApplicationUnhandledException(instance.
Id
.ToString(), source.GetType().ToString(), source.DisplayName, action.ToString(), exception);
System\Activities\WorkflowApplicationEventArgs.cs (1)
29
return this.Owner.
Id
;