5 writes to currentChunkSize
System.ServiceModel.Internals (5)
System\Runtime\BufferedOutputStream.cs (5)
104this.currentChunkSize = 0; 135this.currentChunkSize = 0; 288this.currentChunkSize = this.currentChunk.Length; 300this.currentChunkSize += size; 316this.currentChunk[this.currentChunkSize++] = value;
6 references to currentChunkSize
System.ServiceModel.Internals (6)
System\Runtime\BufferedOutputStream.cs (6)
221bufferSize = this.currentChunkSize; 235Buffer.BlockCopy(this.currentChunk, 0, buffer, offset, this.currentChunkSize); 279int remainingSizeInChunk = this.currentChunk.Length - this.currentChunkSize; 286Buffer.BlockCopy(buffer, offset, this.currentChunk, this.currentChunkSize, remainingSizeInChunk); 297Buffer.BlockCopy(buffer, offset, this.currentChunk, this.currentChunkSize, size); 312if (this.currentChunkSize == this.currentChunk.Length)