We are moving from .NET native serialization to protobuf-net. Right now we are stuck trying to "un-graph" a complex data structure as we are getting an exception "A reference-tracked object changed reference during deserialization". I understand that we need to keep refactoring the involved classes but I'm unable to grasp the debugging information.
My edited stack trace:
en ProtoBuf.BclHelpers.ReadNetObject(Object value, ProtoReader source, Int32 key, Type type, NetObjectOptions options)
en proto_6(Object , ProtoReader )
en proto_14(Object , ProtoReader )
en proto_12(Object , ProtoReader )
en proto_6(Object , ProtoReader )
en proto_4(Object , ProtoReader )
en proto_2(Object , ProtoReader )
en My.BlobManager.deserialize(Byte[] buffer)
en My.BlobManager.Load(String guid)
I assume that "proto_N" refers to a tagged attribute, right? Are those numbers the same as the tags? Any advise on how to debug this would be welcome. Regards, H.