Open stalkerg opened 7 years ago
Thank you for feedback.
Thanks for answers.
You can use MessagePackObject.IsTypeOf<MessagePackExtendedTypeObject>()
. Do you use this method to implement your custom serializer?
You can use MessagePackObject.IsTypeOf
()
Ohh thanks! I just skip it because I expected what
MessagePackObject.UnderlyingType == typeof(MessagePackExtendedTypeObject)
should be same as
MessagePackObject.IsTypeOf<MessagePackExtendedTypeObject>()
I confirm IsTypeOf for MessagePackExtendedTypeObject is work correctly.
Hello. Currently, I try to read fixext like a MessagePackObject, but it's not possible.
What should I do for reading objects from a stream and just check the object for fixext? (in my stream I also have other types)