protobuf-net 3.2.56 (original) (raw)

protobuf-net logo protobuf-net

protobuf-net is a contract based serializer for .NET code, that happens to write data in the "protocol buffers" serialization format engineered by Google. The API, however, is very different to Google's, and follows typical .NET patterns (it is broadly comparable, in usage, to XmlSerializer, DataContractSerializer, etc). It should work for most .NET languages that write standard types and can use attributes.

Build status

Release Notes

v3 is here!

Change history and pending changes are here.


Supported Runtimes

Build tools

Build tools to help you use protobuf-net correctly are available via protobuf-net.BuildTools

Runtime Installation

All stable and some pre-release packages are available on NuGet. CI Builds are available via MyGet (feed URL: https://www.myget.org/F/protobuf-net/api/v3/index.json ).

You can use the following command in the Package Manager Console:

Install-Package protobuf-net
Package NuGet Stable NuGet Pre-release Downloads MyGet
protobuf-net protobuf-net protobuf-net protobuf-net protobuf-net MyGet

Basic usage

1 First Decorate your classes

[ProtoContract]
class Person {
    [ProtoMember(1)]
    public int Id {get;set;}
    [ProtoMember(2)]
    public string Name {get;set;}
    [ProtoMember(3)]
    public Address Address {get;set;}
}
[ProtoContract]
class Address {
    [ProtoMember(1)]
    public string Line1 {get;set;}
    [ProtoMember(2)]
    public string Line2 {get;set;}
}

Note that unlike XmlSerializer, the member-names are not encoded in the data - instead, you must pick an integer to identify each member. Additionally, to show intent it is necessary to show that we intend this type to be serialized (i.e. that it is a data contract).

2 Serialize your data

This writes a 32 byte file to "person.bin" :

var person = new Person {
    Id = 12345, Name = "Fred",
    Address = new Address {
        Line1 = "Flat 1",
        Line2 = "The Meadows"
    }
};
using (var file = File.Create("person.bin")) {
    Serializer.Serialize(file, person);
}

3 Deserialize your data

This reads the data back from "person.bin" :

Person newPerson;
using (var file = File.OpenRead("person.bin")) {
    newPerson = Serializer.Deserialize<Person>(file);
}

Notes

Notes for Identifiers

Advanced subjects

Inheritance

Inheritance must be explicitly declared, in a similar way that it must for XmlSerializer and DataContractSerializer. This is done via [ProtoInclude(...)] on each type with known sub-types:

[ProtoContract]
[ProtoInclude(7, typeof(SomeDerivedType))]
class SomeBaseType {...}

[ProtoContract]
class SomeDerivedType {...}

There is no special significance in the 7 above; it is an integer key, just like every [ProtoMember(...)]. It must be unique in terms of SomeBaseType (no other [ProtoInclude(...)] or [ProtoMember(...)] in SomeBaseType can use 7), but does not need to be unique globally.

.proto file

As an alternative to writing your classes and decorating them, You can generate your types from a .proto schema using protogen; the protogen tool is available as a zip from that location, or as a "global tool" (multi-platform).

Alternative to attributes

In v2+, everything that can be done with attributes can also be configured at runtime via RuntimeTypeModel. The Serializer.* methods are basically just shortcuts to RuntimeTypeModel.Default., so to manipulate the behaviour of Serializer., you must configure RuntimeTypeModel.Default.

Support

I try to be responsive to Stack Overflow questions in the protobuf-net tag, issues logged on GitHub, email, etc. I don't currently offer a paid support channel. If I've helped you, feel free to buy me a coffee or see the "Sponsor" link at the top of the GitHub page.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed.
.NET Core netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed.
.NET Standard netstandard2.0 is compatible. netstandard2.1 is compatible.
.NET Framework net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed.
MonoAndroid monoandroid was computed.
MonoMac monomac was computed.
MonoTouch monotouch was computed.
Tizen tizen40 was computed. tizen60 was computed.
Xamarin.iOS xamarinios was computed.
Xamarin.Mac xamarinmac was computed.
Xamarin.TVOS xamarintvos was computed.
Xamarin.WatchOS xamarinwatchos was computed.

NuGet packages (963)

Showing the top 5 NuGet packages that depend on protobuf-net:

Package Downloads
App.Metrics.Formatters.Prometheus App Metrics Formatting, formatting metrics data to Prometheus formats. 25.7M
ProtoBufJsonConverter Convert a protobuf message to a JSON string or object (and back) using the proto definition file. 20.8M
protobuf-net.Grpc Package Description 19.3M
EventStore.Client The legacy TCP client API for Event Store. Get the open source or commercial versions of Event Store server from https://eventstore.com/ 8.1M
protobuf-net.Grpc.Reflection Package Description 5.4M

GitHub repositories (200)

Showing the top 20 popular GitHub repositories that depend on protobuf-net:

Repository Stars
microsoft/semantic-kernel Integrate cutting-edge LLM technology quickly and easily into your apps 28.1K
QuantConnect/Lean Lean Algorithmic Trading Engine by QuantConnect (Python, C#) 19.9K
JosefNemec/Playnite Video game library manager with support for wide range of 3rd party libraries and game emulation support, providing one unified interface for your games. 13.3K
aspnetboilerplate/aspnetboilerplate ASP.NET Boilerplate - Web Application Framework 12.0K
dotnet/orleans Cloud Native application framework for .NET 10.8K
quasar/Quasar Remote Administration Tool for Windows 9.9K
PixiEditor/PixiEditor PixiEditor is a Universal Editor for all your 2D needs 7.8K
MessagePack-CSharp/MessagePack-CSharp Extremely Fast MessagePack Serializer for C#(.NET, .NET Core, Unity, Xamarin). / msgpack.org[C#] 6.7K
andrewmd5/Borderless-Gaming Play your favorite games in a borderless window; no more time consuming alt-tabs. 6.5K
Facepunch/sbox-public s&box is a modern game engine, built on Valve's Source 2 and the latest .NET technology, it provides a modern intuitive editor for creating games 6.3K
ServiceStack/ServiceStack Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all 5.5K
anjoy8/Blog.Core 💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档: 5.3K
Cysharp/MemoryPack Zero encoding extreme performance binary serializer for C# and Unity. 4.6K
stratumauth/app 📱 Two-Factor Authentication (2FA) client for Android + Wear OS 4.5K
PCL-Community/PCL-CE PCL 社区版 由社区开发者维护与管理 3.9K
huynhsontung/Screenbox LibVLC-based media player for the Universal Windows Platform 3.9K
ZiggyCreatures/FusionCache FusionCache is an easy to use, fast and robust hybrid cache with advanced resiliency features. 3.8K
0x90d/videoduplicatefinder Video Duplicate Finder - Crossplatform 3.3K
linq2db/linq2db Linq to database provider. 3.3K
microsurging/surging Surging is a micro-service engine that provides a lightweight, high-performance, modular RPC request pipeline. support Event-based Asynchronous Pattern and reactive programming. 3.3K

Include prerelease

Include vulnerable

Include deprecated

Version Downloads Last Updated
3.2.56 7,626,878 7/31/2025
3.2.55 98,110 7/27/2025
3.2.52 14,428,173 4/11/2025
3.2.46 4,494,677 1/24/2025
3.2.45 8,605,224 10/23/2024
3.2.30 23,916,060 9/27/2023
3.2.26 6,363,688 5/25/2023
3.2.16 2,921,425 3/17/2023
3.2.12 679,354 3/4/2023
3.2.8 104,880 2/27/2023
3.2.0 206,843 2/20/2023
3.1.33 3,924,021 1/30/2023
3.1.26 1,829,253 12/16/2022
3.1.25 2,443,676 11/9/2022
2.4.9 644,613 2/10/2025
2.4.8 11,904,026 1/9/2023