3 writes to windowStart
System.ServiceModel (3)
System\ServiceModel\Channels\DeliveryStrategy.cs (3)
87this.windowStart = 1; 134this.windowStart++; 145this.windowStart++;
6 references to windowStart
System.ServiceModel (6)
System\ServiceModel\Channels\DeliveryStrategy.cs (6)
118if (this.isEnqueueInOrder && (sequenceNumber > this.windowStart)) 123return (this.Channel.InternalPendingItems + sequenceNumber - this.windowStart < this.Quota); 128if (sequenceNumber > this.windowStart) 136while (this.items.ContainsKey(this.windowStart)) 143item = this.items[this.windowStart]; 144this.items.Remove(this.windowStart);