3 writes to InstanceId
System.Runtime.DurableInstancing (3)
System\Runtime\DurableInstancing\InstanceView.cs (3)
45InstanceId = instanceId; 63InstanceId = source.InstanceId; 263InstanceId = instanceId;
15 references to InstanceId
System.Activities (1)
System\Activities\WorkflowApplication.cs (1)
5946this.instanceId = view.InstanceId;
System.Activities.DurableInstancing (7)
System\Activities\DurableInstancing\LoadWorkflowAsyncResult.cs (1)
82Guid instanceId = base.InstancePersistenceContext.InstanceView.InstanceId;
System\Activities\DurableInstancing\SaveWorkflowAsyncResult.cs (3)
74parameters.Add(new SqlParameter { ParameterName = "@instanceId", SqlDbType = SqlDbType.UniqueIdentifier, Value = base.InstancePersistenceContext.InstanceView.InstanceId }); 154instanceLockTracking.TrackStoreLock(base.InstancePersistenceContext.InstanceView.InstanceId, instanceVersion, this.DependentTransaction); 598parameters.Add(new SqlParameter() { SqlDbType = SqlDbType.UniqueIdentifier, ParameterName = instanceIdArgument, Value = base.InstancePersistenceContext.InstanceView.InstanceId });
System\Activities\DurableInstancing\SqlWorkflowInstanceStoreAsyncResult.cs (3)
175Guid instanceId = thisPtr.InstancePersistenceContext.InstanceView.InstanceId; 208Guid instanceId = (thisPtr.InstancePersistenceContext != null) ? thisPtr.InstancePersistenceContext.InstanceView.InstanceId : Guid.Empty; 274Guid instanceId = (this.InstancePersistenceContext != null) ? this.InstancePersistenceContext.InstanceView.InstanceId : Guid.Empty;
System.Runtime.DurableInstancing (5)
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (4)
251throw Fx.Exception.AsError(new InstanceHandleConflictException(LastAsyncResult.CurrentCommand.Name, InstanceView.InstanceId)); 266throw Fx.Exception.AsError(new InstanceHandleConflictException(LastAsyncResult.CurrentCommand.Name, InstanceView.InstanceId)); 1514throw Fx.Exception.AsError(new InstanceHandleConflictException(null, this.context.InstanceView.InstanceId)); 1544return new InstanceHandleConflictException(null, this.context.InstanceView.InstanceId);
System\Runtime\DurableInstancing\InstanceView.cs (1)
63InstanceId = source.InstanceId;
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\Dispatcher\PersistenceProviderDirectory.cs (2)
1119this.context = new PersistenceContext(this.ppd, this.ppd.store, this.handle, this.view.InstanceId, this.view.InstanceKeys.Values.Select((keyView) => new InstanceKey(keyView.InstanceKey, keyView.InstanceKeyMetadata)), true, true, this.view, null); 1128this.context = new PersistenceContext(this.ppd, this.ppd.store, this.handle, this.view.InstanceId, this.view.InstanceKeys.Values.Select((keyView) => new InstanceKey(keyView.InstanceKey, keyView.InstanceKeyMetadata)), false, true, this.view, this.updatedIdentity);