1 write to size
System.ServiceModel (1)
System\ServiceModel\Channels\BufferedOutputAsyncStream.cs (1)
518this.size = queueSize;
6 references to size
System.ServiceModel (6)
System\ServiceModel\Channels\BufferedOutputAsyncStream.cs (6)
519this.buffers = new Slot[size]; 562this.head = (this.head + 1) % size; 575Fx.Assert(this.refBufferList.Count < size, "Bufferlist is already full."); 577if (this.refBufferList.Count < this.size) 590Fx.Assert(count < size, "The queue is already full."); 591int tail = (this.head + this.count) % size;