1 write to operationTimeout
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (1)
78this.operationTimeout = operationTimeout;
16 references to operationTimeout
System.WorkflowServices (16)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (16)
173this.lockingProvider.Unlock(this.operationTimeout); 182this.provider.Delete(this.instance, this.operationTimeout); 201this.lockingProvider.Create(this.Instance, this.operationTimeout, disposeInstance); 205this.provider.Create(this.Instance, this.operationTimeout); 225this.lockingProvider.Update(this.Instance, this.operationTimeout, disposeInstance); 229this.provider.Update(this.Instance, this.operationTimeout); 296this.instance = this.lockingProvider.Load(this.operationTimeout, true); 300this.instance = this.provider.Load(this.operationTimeout); 577result = this.durableInstance.lockingProvider.BeginUnlock(this.durableInstance.operationTimeout, unlockCallback, this); 586result = this.durableInstance.provider.BeginDelete(this.durableInstance.Instance, this.durableInstance.operationTimeout, deleteCallback, this); 596result = this.durableInstance.lockingProvider.BeginCreate(this.durableInstance.Instance, this.durableInstance.operationTimeout, disposeInstace, createCallback, this); 600result = this.durableInstance.provider.BeginCreate(this.durableInstance.Instance, this.durableInstance.operationTimeout, createCallback, this); 611result = this.durableInstance.lockingProvider.BeginUpdate(this.durableInstance.Instance, this.durableInstance.operationTimeout, disposeInstace, updateCallback, this); 615result = this.durableInstance.provider.BeginUpdate(this.durableInstance.Instance, this.durableInstance.operationTimeout, updateCallback, this); 804result = this.durableInstance.lockingProvider.BeginLoad(this.durableInstance.operationTimeout, true, loadCallback, this); 808result = this.durableInstance.provider.BeginLoad(this.durableInstance.operationTimeout, loadCallback, this);