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)
139byte[] tempBuffer = _preReadData; 141Buffer.BlockCopy(tempBuffer, _preReadOffset, _preReadData, 0, _preReadCount); 142Buffer.BlockCopy(initialData, initialOffset, _preReadData, _preReadCount, initialSize); 161Buffer.BlockCopy(_preReadData, _preReadOffset, buffer, offset, bytesToCopy); 177Buffer.BlockCopy(_preReadData, _preReadOffset, AsyncReadBuffer, offset, bytesToCopy);