Esempio n. 1
0
 //Reads variable length long varibale to the stream
 public override int readVInt()
 {
     try
     {
         return(UnsignedNumeric.readUnsignedInt(this));
     }
     catch (IOException e)
     {
         logger.Warn(e);
         throw new TransportException(e);
     }
 }