4 writes to currentExecution
System.Runtime.DurableInstancing (4)
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (4)
1103
this.
currentExecution
= (new List<InstancePersistenceCommand> { command }).GetEnumerator();
1315
this.
currentExecution
= this.executionStack.Pop();
1319
this.
currentExecution
= null;
1412
this.
currentExecution
= reduction.GetEnumerator();
4 references to currentExecution
System.Runtime.DurableInstancing (4)
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (4)
1185
while (this.
currentExecution
!= null)
1187
if (this.
currentExecution
.MoveNext())
1191
CurrentCommand = this.
currentExecution
.Current;
1411
this.executionStack.Push(this.
currentExecution
);