public Receive Receive()
        {
            if (!this.conneted)
            {
                throw new IOException("Channel is closed!");
            }

            var response = new BoundedByteBufferReceive();

            response.ReadCompletely(this.readChannel);

            return(response);
        }
Ejemplo n.º 2
0
        public Receive Receive()
        {
            if (!this.conneted)
            {
                throw new IOException("Channel is closed!");
            }

            var response = new BoundedByteBufferReceive();
            response.ReadCompletely(this.readChannel);

            return response;
        }