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