2 writes to WorkflowIdentity
System.Activities (2)
System\Activities\Hosting\WorkflowInstance.cs (1)
307this.executor.WorkflowIdentity = this.DefinitionIdentity;
System\Activities\Runtime\ActivityExecutor.cs (1)
119this.WorkflowIdentity = host.DefinitionIdentity;
6 references to WorkflowIdentity
System.Activities (6)
System\Activities\Hosting\WorkflowInstance.cs (2)
283WorkflowIdentity originalDefinitionIdentity = this.executor.WorkflowIdentity; 322this.Controller.Track(new WorkflowInstanceUpdatedRecord(this.Id, this.WorkflowDefinition.DisplayName, originalDefinitionIdentity, this.executor.WorkflowIdentity));
System\Activities\Runtime\ActivityExecutor.cs (2)
1766if (!object.Equals(workflowInstance.DefinitionIdentity, this.WorkflowIdentity)) 1768throw FxTrace.Exception.AsError(new VersionMismatchException(workflowInstance.DefinitionIdentity, this.WorkflowIdentity));
System\Activities\WorkflowApplication.cs (2)
1980result = new WorkflowApplicationInstance(persistenceManager, values, deserializedRuntimeState.WorkflowIdentity); 4397return new WorkflowApplicationInstance(thisPtr.persistenceManager, thisPtr.values, deserializedRuntimeState.WorkflowIdentity);