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