1 write to provider
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (1)
73
this.
provider
= persistenceProvider;
20 references to provider
System.WorkflowServices (20)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (20)
182
this.
provider
.Delete(this.instance, this.operationTimeout);
205
this.
provider
.Create(this.Instance, this.operationTimeout);
229
this.
provider
.Update(this.Instance, this.operationTimeout);
300
this.instance = this.
provider
.Load(this.operationTimeout);
329
this.
provider
.Abort();
334
return this.
provider
.BeginClose(timeout, callback, state);
339
return this.
provider
.BeginOpen(timeout, callback, state);
344
this.
provider
.Close(timeout);
349
this.
provider
.EndClose(result);
354
this.
provider
.EndOpen(result);
359
this.
provider
.Open(timeout);
586
result = this.durableInstance.
provider
.BeginDelete(this.durableInstance.Instance, this.durableInstance.operationTimeout, deleteCallback, this);
600
result = this.durableInstance.
provider
.BeginCreate(this.durableInstance.Instance, this.durableInstance.operationTimeout, createCallback, this);
615
result = this.durableInstance.
provider
.BeginUpdate(this.durableInstance.Instance, this.durableInstance.operationTimeout, updateCallback, this);
715
this.durableInstance.
provider
.EndDelete(result);
721
this.durableInstance.
provider
.EndCreate(result);
724
this.durableInstance.
provider
.EndUpdate(result);
808
result = this.durableInstance.
provider
.BeginLoad(this.durableInstance.operationTimeout, loadCallback, this);
842
this.durableInstance.instance = this.durableInstance.
provider
.EndLoad(result);
884
startResult.durableInstance.instance = startResult.durableInstance.
provider
.EndLoad(result);