2 writes to chunks
System.ServiceModel.Internals (2)
System\Runtime\BufferedOutputStream.cs (2)
34this.chunks = new byte[4][]; 131this.chunks = newChunks;
9 references to chunks
System.ServiceModel.Internals (9)
System\Runtime\BufferedOutputStream.cs (9)
107this.chunks[0] = this.currentChunk; 127if (this.chunkCount == this.chunks.Length) 129byte[][] newChunks = new byte[this.chunks.Length * 2][]; 130Array.Copy(this.chunks, newChunks, this.chunks.Length); 133this.chunks[this.chunkCount++] = newChunk; 165this.bufferManager.ReturnBuffer(this.chunks[i]); 166this.chunks[i] = null; 231byte[] chunk = this.chunks[i];