2 writes to clonedInstanceStateStream
System.Workflow.Runtime (2)
WorkflowStateRollbackService.cs (2)
48
this.
clonedInstanceStateStream
= new MemoryStream(10240);
75
this.
clonedInstanceStateStream
= null;
6 references to clonedInstanceStateStream
System.Workflow.Runtime (6)
WorkflowStateRollbackService.cs (6)
49
this.workflowExecutor.RootActivity.Save(this.
clonedInstanceStateStream
);
52
this.
clonedInstanceStateStream
.Position = 0;
57
if (this.
clonedInstanceStateStream
== null)
80
Debug.Assert(this.
clonedInstanceStateStream
!= null, "cloned instance-state stream null at restore time");
84
this.
clonedInstanceStateStream
.Position = 0;
87
clonedRootActivity = Activity.Load(this.
clonedInstanceStateStream
, (Activity)this.workflowDefinition);