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