3 writes to count
System.ServiceModel (3)
System\ServiceModel\Dispatcher\MultipleReceiveBinder.cs (3)
301this.count = 0; 317count++; 328this.count--;
5 references to count
System.ServiceModel (5)
System\ServiceModel\Dispatcher\MultipleReceiveBinder.cs (5)
308get { return this.count == this.size; } 315Fx.AssertAndThrow(this.count < this.size, "Cannot Enqueue into a full queue."); 316this.items[(this.head + this.count) % this.size] = receiveScope; 325Fx.AssertAndThrow(this.count > 0, "Cannot Dequeue and empty queue."); 335Fx.AssertAndThrow(this.count > 0, "Cannot unlock item when queue is empty");