Exemplo n.º 1
0
 //Writing and reading Variable Length numerics are handed by UnsignedNumeric Class.
 //Writes variable length integer varibale to the stream
 public override void writeVInt(int vInt)
 {
     try
     {
         UnsignedNumeric.writeUnsignedInt(this, vInt);
     }
     catch (IOException e)
     {
         logger.Warn(e);
         throw new TransportException(e);
     }
 }