RuntimeTypeModel.Default[typeof(IMyClass2)].AddSubType(1, typeof(MyClass)) threw \"Repeated data (a list, collection, etc) has inbuilt behaviour and cannot be subclassed\" exception. Following is the
I am using protobuf-net v2 beta r431 for C# .net 4.0 application. In my application I have a Dictionary<int, IMyClass> which i need to serialize. A class MyClass implements IMyClass interface. A
I\'m writing a program that saves \'map\' files to the HD so that I can open them later and display the same data.My maps originally saved only one data type, a set of my own custom objects with the p
The existence of AsReference option in Protobuf-net and the word that BinaryFormatter is a \"graph serializer\" lead me to assume that BinaryFormatter does not maintain references and that it makes a
I have had the opportunity to spend a great number of hours trying to use WCF in mono. It is simply too poorly implemented at this point to be put into a productio开发者_StackOverflow中文版n environme
I am sometimes receiving the following exception when attempting to deserialise an object using protobuf.net. I\'m surprised as I never have more than a single thread deserialising the same object at
I have the following.. [ProtoContract, ProtoInclude(50, typeof(DateRange)), ProtoInclude(51, typeof(IntRange))]
I understand that AsReference is not supported for lists with protobuf.net, so I have attempted a work-around for this limitation.I have created a custom list called SuperList that contains items wrap
If I understand it correctly, the Java end needs the respective .p开发者_如何学编程roto file. However, it is unclear to me how to generate one from the RuntimeTypeModel instance (protobuf-net v2) used
Given: Windows开发者_如何学Python Client-Server communication over HTTP with protocol buffers Agent-Server communication over HTTP with protocol buffers (a different .proto spec)