3 writes to _buffer
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SessionConnectionReader.cs (3)
37_buffer = connection.AsyncReadBuffer; 141_buffer = _connection.AsyncReadBuffer; 199_buffer = Fx.AllocateByteArray(_connection.AsyncReadBufferSize);
9 references to _buffer
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SessionConnectionReader.cs (9)
48return DecodeMessage(_buffer, ref _offset, ref _size, ref _isAtEOF, timeout); 90preReadConnection.AddPreReadData(_buffer, _offset, _size); 94result = new PreReadConnection(result, _buffer, _offset, _size); 148var result = _connection.BeginRead(0, _buffer.Length, timeoutHelper.RemainingTime(), TaskHelpers.OnAsyncCompletionCallback, tcs); 197if (_buffer == null) 205(EnvelopeSize - EnvelopeOffset) >= _buffer.Length) 207bytesRead = _connection.Read(EnvelopeBuffer, EnvelopeOffset, _buffer.Length, timeoutHelper.RemainingTime()); 212bytesRead = _connection.Read(_buffer, 0, _buffer.Length, timeoutHelper.RemainingTime());