3 implementations of AsyncReadBuffer
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (2)
51
public virtual byte[]
AsyncReadBuffer
468
public byte[]
AsyncReadBuffer
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SocketConnection.cs (1)
61
public byte[]
AsyncReadBuffer
5 references to AsyncReadBuffer
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (2)
53
get { return _connection.
AsyncReadBuffer
; }
849
Buffer.BlockCopy(connection.
AsyncReadBuffer
, 0, buffer, offset, ackBytesRead);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingChannels.cs (1)
459
int bytesDecoded = decoder.Decode(connection.
AsyncReadBuffer
, offset, size);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SessionConnectionReader.cs (2)
37
_buffer = connection.
AsyncReadBuffer
;
141
_buffer = _connection.
AsyncReadBuffer
;