3 writes to preReadData
System.ServiceModel (3)
System\ServiceModel\Channels\Connection.cs (3)
183this.preReadData = initialData; 193this.preReadData = DiagnosticUtility.Utility.AllocateByteArray(initialSize + this.preReadCount); 201this.preReadData = initialData;
5 references to preReadData
System.ServiceModel (5)
System\ServiceModel\Channels\Connection.cs (5)
192byte[] tempBuffer = this.preReadData; 194Buffer.BlockCopy(tempBuffer, this.preReadOffset, this.preReadData, 0, this.preReadCount); 195Buffer.BlockCopy(initialData, initialOffset, this.preReadData, this.preReadCount, initialSize); 214Buffer.BlockCopy(this.preReadData, this.preReadOffset, buffer, offset, bytesToCopy); 230Buffer.BlockCopy(this.preReadData, this.preReadOffset, AsyncReadBuffer, offset, bytesToCopy);