Ejemplo n.º 1
0
 public void ReadBytes(IChannelBuffer dst, int length)
 {
     if (length > dst.WriteableBytes)
     {
         throw new IndexOutOfRangeException();
     }
     ReadBytes(dst, dst.WriterIndex, length);
     dst.SetWriterIndex(dst.WriterIndex + length);
 }