2 writes to priorAsyncResult
System.Runtime.DurableInstancing (2)
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (2)
996
this.
priorAsyncResult
= this.context.LastAsyncResult;
1075
this.
priorAsyncResult
= this.context.LastAsyncResult;
14 references to priorAsyncResult
System.Runtime.DurableInstancing (14)
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (14)
997
Fx.Assert(this.
priorAsyncResult
!= null, "The LastAsyncResult should already have been checked.");
998
this.
priorAsyncResult
.executeCalledByCurrentCommand = true;
1017
this.context.LastAsyncResult = this.
priorAsyncResult
;
1076
Fx.Assert(this.
priorAsyncResult
!= null, "The LastAsyncResult should already have been checked.");
1077
this.
priorAsyncResult
.executeCalledByCurrentCommand = true;
1088
this.context.LastAsyncResult = this.
priorAsyncResult
;
1116
current = current.
priorAsyncResult
;
1197
if (this.
priorAsyncResult
!= null)
1199
if (this.
priorAsyncResult
.CurrentCommand.IsTransactionEnlistmentOptional && !CurrentCommand.IsTransactionEnlistmentOptional)
1212
else if (this.
priorAsyncResult
== null)
1227
if (this.
priorAsyncResult
!= null)
1229
if (!this.
priorAsyncResult
.CurrentCommand.AutomaticallyAcquiringLock)
1558
Fx.Assert(this.
priorAsyncResult
!= null, "In the non-outer case, we should always have a priorAsyncResult here, since we set it before ----igining OnComplete.");
1559
this.context.LastAsyncResult = this.
priorAsyncResult
;