Top "Protobuf-net" questions

An independent implementation of Google's protobuf binary serialization format, protobuf-net approaches the problem-space with common .NET coding styles, but retaining the high performance, dense output and cross-platform interoperability.

Deserialize unknown type with protobuf-net

I have 2 networked apps that should send serialized protobuf-net messages to each other. I can serialize the objects and send …

c# serialization protocol-buffers protobuf-net
How do I generate a .proto file from a C# class decorated with attributes?

Trying to get my mind around google protobuf. I found some implementation of protobuf in C# but they seems to …

c# .net serialization protocol-buffers protobuf-net
XML vs Binary performance for Serialization/Deserialization

I'm working on a compact framework application and need to boost performance. The app currently works offline by serializing objects …

c# .net serialization compact-framework protobuf-net
How to Serialize Inherited Class with ProtoBuf-Net

I am sorry if this is a duplicate. I have searched several places for an answer that I might understand …

c# serialization protobuf-net
Protobuf-net Error: Type is not expected, and no contract can be inferred: BlockHeader

Trying to get de-serialization of an openstreetmap pbf file working properly by following information from this thread as well as …

c# protobuf-net openstreetmap
protobuf-net enum serialization

What needs to be done in order to serialize enums with protobuf-net? I'm getting the below error when serializing a …

enums protocol-buffers protobuf-net
What does the ProtoInclude attribute mean (in protobuf-net)

In the ProtoBuf-Net implementation, what does the ProtoInclude attribute mean, and what does it do? An example would be appreciated. …

c# .net protocol-buffers protobuf-net
Google.Protobuf.InvalidProtocolBufferException: Protocol message contained an invalid tag (zero)

I have a problem with my school project, i use Protobuf library but i have the following error: Google.Protobuf.…

c# protobuf-net
protobuf-net Serialize To String and Store in Database Then De Serialize

I'd like to serialize/de-serialize an object using a string. Just to note, when I serialize/de-serialize to a file …

c# protobuf-net
Protobuf-net serialization without annotation

I looked at this answer and I am in a situation where I don't need to maintain backward compatibility and …

c# serialization annotations protobuf-net