Home › Forums › Support › input .lzma is too short › Reply To: input .lzma is too short
May 29, 2014 at 01:38
#2666
Inactive
I already fix it. The example is wrong in this line:
CustomObject myCustomObject = serverConnection.SendReceiveObject<CustomObject>
("RequestCustomObject", "CustomObjectReply", 1000);
Is missing the 4th parameter:
CustomObject myCustomObject = serverConnection.SendReceiveObject<CustomObject>
("RequestCustomObject", "CustomObjectReply", 1000, DATA_YOU_WANT_SEND);
-
This reply was modified 9 years, 6 months ago by
.