1 write to pendingOperations
System.Activities (1)
System\Activities\WorkflowApplication.cs (1)
121this.pendingOperations = new Quack<InstanceOperation>();
15 references to pendingOperations
System.Activities (15)
System\Activities\WorkflowApplication.cs (15)
255lock (this.pendingOperations) 409lock (this.pendingOperations) 459lock (this.pendingOperations) 467lock (this.pendingOperations) 483this.pendingOperations.PushFront(operation); 487this.pendingOperations.Enqueue(operation); 495lock (this.pendingOperations) 497return this.pendingOperations.Remove(operation); 569if (this.pendingOperations.Count > 0) 572InstanceOperation temp = this.pendingOperations[0]; 588this.pendingOperations.Dequeue(); 593for (int i = 0; i < this.pendingOperations.Count; i++) 595temp = this.pendingOperations[i]; 608this.pendingOperations.Remove(i); 688lock (this.pendingOperations)