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