1 write to size
System.ServiceModel (1)
System\ServiceModel\Dispatcher\MultipleReceiveBinder.cs (1)
299this.size = size;
5 references to size
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; 327this.head = (head + 1) % this.size; 378if (slot == (slot = Interlocked.CompareExchange(ref this.pending, (slot + 1) % this.size, slot)))