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
Describe the issue
I have a custom class Bytes that represents a buffer of binary data. I would like to be able to include (de)serialization for the class that can be used with either JSON or MsgPack where it uses a Base64 encoded string for JSON and MsgPackBinary for MsgPack.
It seems like it used to be possible in version prior to 7 to detect whether JSON or MsgPack was in use while (de)serializing (e.g., isMsgPack() on the Variant). Is this still possible in version 7? If so can I get some tips on how to implement?