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