4 implementations of AsyncReadBuffer
System.ServiceModel (4)
System\ServiceModel\Channels\Connection.cs (2)
69public virtual byte[] AsyncReadBuffer 572public byte[] AsyncReadBuffer
System\ServiceModel\Channels\PipeConnection.cs (1)
114public byte[] AsyncReadBuffer
System\ServiceModel\Channels\SocketConnection.cs (1)
123public byte[] AsyncReadBuffer
15 references to AsyncReadBuffer
System.ServiceModel (15)
System\ServiceModel\Channels\Connection.cs (2)
71get { return connection.AsyncReadBuffer; } 512Buffer.BlockCopy(connection.AsyncReadBuffer, 0, buffer, offset, bytesRead);
System\ServiceModel\Channels\ConnectionModeReader.cs (1)
177buffer = Connection.AsyncReadBuffer;
System\ServiceModel\Channels\FramingChannels.cs (3)
616connection.AsyncReadBuffer, ackBytesRead, channel.decoder, channel.Via)) 1127int bytesDecoded = decoder.Decode(connection.AsyncReadBuffer, offset, size); 1272if (!ConnectionUpgradeHelper.ValidateUpgradeResponse(connection.AsyncReadBuffer, bytesRead, decoder))
System\ServiceModel\Channels\SessionConnectionReader.cs (5)
329this.connectionBuffer = Connection.AsyncReadBuffer; 462this.connectionBuffer = Connection.AsyncReadBuffer; 510this.connectionBuffer = Connection.AsyncReadBuffer; 1130this.buffer = connection.AsyncReadBuffer; 1239buffer = connection.AsyncReadBuffer;
System\ServiceModel\Channels\SingletonConnectionReader.cs (3)
609this.ConnectionBuffer = this.currentConnection.AsyncReadBuffer; 946this.connectionBuffer = Connection.AsyncReadBuffer; 1194Buffer.BlockCopy(connection.AsyncReadBuffer, offset, buffer, offset, size);
System\ServiceModel\Channels\StreamedFramingRequestChannel.cs (1)
319connection.AsyncReadBuffer, ackBytesRead, decoder, channel.Via))