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)
48
return DecodeMessage(
_buffer
, ref _offset, ref _size, ref _isAtEOF, timeout);
90
preReadConnection.AddPreReadData(
_buffer
, _offset, _size);
94
result = new PreReadConnection(result,
_buffer
, _offset, _size);
148
var result = _connection.BeginRead(0,
_buffer
.Length, timeoutHelper.RemainingTime(), TaskHelpers.OnAsyncCompletionCallback, tcs);
197
if (
_buffer
== null)
205
(EnvelopeSize - EnvelopeOffset) >=
_buffer
.Length)
207
bytesRead = _connection.Read(EnvelopeBuffer, EnvelopeOffset,
_buffer
.Length, timeoutHelper.RemainingTime());
212
bytesRead = _connection.Read(
_buffer
, 0,
_buffer
.Length, timeoutHelper.RemainingTime());