1 write to lockingProvider
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (1)
72this.lockingProvider = persistenceProvider as LockingPersistenceProvider;
21 references to lockingProvider
System.WorkflowServices (21)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (21)
167if (this.lockingProvider != null) 173this.lockingProvider.Unlock(this.operationTimeout); 199if (this.lockingProvider != null) 201this.lockingProvider.Create(this.Instance, this.operationTimeout, disposeInstance); 210string traceText = SR2.GetString(SR2.ServiceDurableInstanceSavedDetails, this.InstanceId, (this.lockingProvider != null) ? "True" : "False"); 223if (this.lockingProvider != null) 225this.lockingProvider.Update(this.Instance, this.operationTimeout, disposeInstance); 234string traceText = SR2.GetString(SR2.ServiceDurableInstanceSavedDetails, this.InstanceId, (this.lockingProvider != null) ? "True" : "False"); 294if (this.lockingProvider != null) 296this.instance = this.lockingProvider.Load(this.operationTimeout, true); 305string traceText = SR2.GetString(SR2.ServiceDurableInstanceLoadedDetails, this.InstanceId, (this.lockingProvider != null) ? "True" : "False"); 477if (this.lockingProvider != null) 571if (this.durableInstance.lockingProvider != null) 577result = this.durableInstance.lockingProvider.BeginUnlock(this.durableInstance.operationTimeout, unlockCallback, this); 594if (this.durableInstance.lockingProvider != null) 596result = this.durableInstance.lockingProvider.BeginCreate(this.durableInstance.Instance, this.durableInstance.operationTimeout, disposeInstace, createCallback, this); 609if (this.durableInstance.lockingProvider != null) 611result = this.durableInstance.lockingProvider.BeginUpdate(this.durableInstance.Instance, this.durableInstance.operationTimeout, disposeInstace, updateCallback, this); 718this.durableInstance.lockingProvider.EndUnlock(result); 802if (this.durableInstance.lockingProvider != null) 804result = this.durableInstance.lockingProvider.BeginLoad(this.durableInstance.operationTimeout, true, loadCallback, this);