3 writes to _preReadData
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (3)
130
_preReadData
= initialData;
140
_preReadData
= Fx.AllocateByteArray(initialSize + _preReadCount);
148
_preReadData
= initialData;
5 references to _preReadData
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (5)
139
byte[] tempBuffer =
_preReadData
;
141
Buffer.BlockCopy(tempBuffer, _preReadOffset,
_preReadData
, 0, _preReadCount);
142
Buffer.BlockCopy(initialData, initialOffset,
_preReadData
, _preReadCount, initialSize);
161
Buffer.BlockCopy(
_preReadData
, _preReadOffset, buffer, offset, bytesToCopy);
177
Buffer.BlockCopy(
_preReadData
, _preReadOffset, AsyncReadBuffer, offset, bytesToCopy);