You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First two bytes indicate the size of the entire payload, not just the data after it. This is the way I would describe this message:
publicclassRootEvent{[FieldOrder(1)]publicushortDataLength;[FieldOrder(2)][FieldLength(nameof(DataLength),-sizeof(ushort)]// Second parameter is "adjustment" for the actual lengthpublicobjectData;}
However I don't seem to find a way to implement something similar using this library, did I miss something? 🤔
The text was updated successfully, but these errors were encountered:
Consider the following payload:
First two bytes indicate the size of the entire payload, not just the data after it. This is the way I would describe this message:
However I don't seem to find a way to implement something similar using this library, did I miss something? 🤔
The text was updated successfully, but these errors were encountered: