5 writes to _preReadCount
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (5)
132_preReadCount = initialSize; 144_preReadCount += initialSize; 150_preReadCount = initialSize; 163_preReadCount -= bytesToCopy; 179_preReadCount -= bytesToCopy;
8 references to _preReadCount
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (8)
137if (_preReadCount > 0) 140_preReadData = Fx.AllocateByteArray(initialSize + _preReadCount); 141Buffer.BlockCopy(tempBuffer, _preReadOffset, _preReadData, 0, _preReadCount); 142Buffer.BlockCopy(initialData, initialOffset, _preReadData, _preReadCount, initialSize); 158if (_preReadCount > 0) 160int bytesToCopy = Math.Min(size, _preReadCount); 174if (_preReadCount > 0) 176int bytesToCopy = Math.Min(size, _preReadCount);