10 writes to expectedStage
System.Runtime.DurableInstancing (10)
System\Runtime\PersistencePipeline.cs (10)
32this.expectedStage = Stage.Collect; 45this.expectedStage = Stage.Load; 76this.expectedStage = Stage.None; 114this.expectedStage = Stage.Map; 120this.expectedStage = Stage.None; 157this.expectedStage = Stage.Save; 163this.expectedStage = Stage.None; 187this.expectedStage = Stage.None; 195this.expectedStage = Stage.Publish; 201this.expectedStage = Stage.None;
7 references to expectedStage
System.Runtime.DurableInstancing (7)
System\Runtime\PersistencePipeline.cs (7)
75Fx.AssertAndThrow(this.expectedStage == Stage.Collect, "Collect called at the wrong time."); 119Fx.AssertAndThrow(this.expectedStage == Stage.Map, "Map called at the wrong time."); 162Fx.AssertAndThrow(this.expectedStage == Stage.Save, "Save called at the wrong time."); 175Fx.AssertAndThrow(this.expectedStage == Stage.Load, "SetLoadedValues called at the wrong time."); 186Fx.AssertAndThrow(this.expectedStage == Stage.Load, "Load called at the wrong time."); 200Fx.AssertAndThrow(this.expectedStage == Stage.Publish || this.expectedStage == Stage.Load, "Publish called at the wrong time.");