public int Send(byte[] data, int offset, int length) { try { UDT udt = UDT.s_UDTUnited.lookup(mSocketId); return(udt.send(data, offset, length)); } catch (UdtException udtException) { throw new Exception("Problem when sending data", udtException); } }
public int Send(byte[] data, int offset, int length) { try { UDT udt = UDT.s_UDTUnited.lookup(mSocketId); return(udt.send(data, offset, length)); } catch (UdtException udtException) { throw new Exception(udtException.getErrorMessage(), udtException); } }