2 writes to store
System.Activities (2)
System\Activities\WorkflowApplication.cs (2)
5571
this.
store
= store;
5589
this.
store
= store;
27 references to store
System.Activities (27)
System\Activities\WorkflowApplication.cs (27)
5604
return this.
store
;
5668
this.owner = this.
store
.Execute(this.temporaryHandle, GetCreateOwnerCommand(definitionIdentity), timeout).InstanceOwner;
5676
this.handle = this.isTryLoad ? this.
store
.CreateInstanceHandle(this.owner) : this.
store
.CreateInstanceHandle(this.owner, InstanceId);
5688
this.temporaryHandle = this.
store
.CreateInstanceHandle(owner);
5719
result = this.
store
.BeginExecute(this.temporaryHandle, GetCreateOwnerCommand(definitionIdentity), timeout, callback, state);
5737
this.owner = this.
store
.EndExecute(result).InstanceOwner;
5745
this.handle = this.isTryLoad ? this.
store
.CreateInstanceHandle(this.owner) : this.
store
.CreateInstanceHandle(this.owner, InstanceId);
5758
this.
store
.Execute(this.temporaryHandle, new DeleteWorkflowOwnerCommand(), timeout);
5776
result = this.
store
.BeginExecute(this.temporaryHandle, new DeleteWorkflowOwnerCommand(), timeout, callback, state);
5796
this.
store
.EndExecute(result);
5816
this.
store
.Execute(this.handle, CreateSaveCommand(null, this.instanceMetadata, PersistenceOperation.Save), timeout);
5829
return this.
store
.BeginExecute(this.handle, CreateSaveCommand(null, this.instanceMetadata, PersistenceOperation.Save), timeout, callback, state);
5835
this.
store
.EndExecute(result);
5960
this.
store
.Execute(this.handle, CreateSaveCommand(instance, (this.isLocked ? this.mutableMetadata : this.instanceMetadata), operation), timeout);
5966
InstanceView view = this.
store
.Execute(this.handle, new LoadWorkflowCommand(), timeout);
5979
InstanceView view = this.
store
.Execute(this.handle, new TryLoadRunnableWorkflowCommand(), timeout);
5985
return this.
store
.BeginExecute(this.handle, CreateSaveCommand(instance, (this.isLocked ? this.mutableMetadata : this.instanceMetadata), operation), timeout, callback, state);
5990
this.
store
.EndExecute(result);
5996
return this.
store
.BeginExecute(this.handle, new LoadWorkflowCommand(), timeout, callback, state);
6001
InstanceView view = this.
store
.EndExecute(result);
6014
return this.
store
.BeginExecute(this.handle, new TryLoadRunnableWorkflowCommand(), timeout, callback, state);
6019
InstanceView view = this.
store
.EndExecute(result);
6046
this.
store
.Execute(this.handle, saveCmd, timeout);
6056
return this.
store
.BeginExecute(this.handle, saveCmd, timeout, callback, state);
6061
this.
store
.EndExecute(result);