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