1 write to durableInstance
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (1)
558
this.
durableInstance
= durableInstance;
35 references to durableInstance
System.WorkflowServices (35)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (35)
564
operation = this.
durableInstance
.FinishOperationCommon(completeInstance, operationException, out disposeInstace);
571
if (this.
durableInstance
.lockingProvider != null)
574
this.
durableInstance
.saveStateInOperationTransaction,
575
this.
durableInstance
.clonedTransaction))
577
result = this.
durableInstance
.lockingProvider.BeginUnlock(this.
durableInstance
.operationTimeout, unlockCallback, this);
583
this.
durableInstance
.saveStateInOperationTransaction,
584
this.
durableInstance
.clonedTransaction))
586
result = this.
durableInstance
.provider.BeginDelete(this.
durableInstance
.Instance, this.
durableInstance
.operationTimeout, deleteCallback, this);
591
this.
durableInstance
.saveStateInOperationTransaction,
592
this.
durableInstance
.clonedTransaction))
594
if (this.
durableInstance
.lockingProvider != null)
596
result = this.
durableInstance
.lockingProvider.BeginCreate(this.
durableInstance
.Instance, this.
durableInstance
.operationTimeout, disposeInstace, createCallback, this);
600
result = this.
durableInstance
.provider.BeginCreate(this.
durableInstance
.Instance, this.
durableInstance
.operationTimeout, createCallback, this);
606
this.
durableInstance
.saveStateInOperationTransaction,
607
this.
durableInstance
.clonedTransaction))
609
if (this.
durableInstance
.lockingProvider != null)
611
result = this.
durableInstance
.lockingProvider.BeginUpdate(this.
durableInstance
.Instance, this.
durableInstance
.operationTimeout, disposeInstace, updateCallback, this);
615
result = this.
durableInstance
.provider.BeginUpdate(this.
durableInstance
.Instance, this.
durableInstance
.operationTimeout, updateCallback, this);
629
this.
durableInstance
.DisposeInstance();
715
this.
durableInstance
.provider.EndDelete(result);
718
this.
durableInstance
.lockingProvider.EndUnlock(result);
721
this.
durableInstance
.provider.EndCreate(result);
724
this.
durableInstance
.provider.EndUpdate(result);
735
this.
durableInstance
.CompleteClonedTransaction();