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