protobuf-net.Reflection 3.2.46

Prefix Reserved
dotnet add package protobuf-net.Reflection --version 3.2.46                
NuGet\Install-Package protobuf-net.Reflection -Version 3.2.46                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="protobuf-net.Reflection" Version="3.2.46" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add protobuf-net.Reflection --version 3.2.46                
#r "nuget: protobuf-net.Reflection, 3.2.46"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install protobuf-net.Reflection as a Cake Addin
#addin nuget:?package=protobuf-net.Reflection&version=3.2.46

// Install protobuf-net.Reflection as a Cake Tool
#tool nuget:?package=protobuf-net.Reflection&version=3.2.46                

<img src="https://protogen.marcgravell.com/images/protobuf-net.svg" alt="protobuf-net logo" width="45" height="45"> 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

  • .NET 6.0+ (.NET 5 etc will use .NET Standard 2.1)
  • .NET Standard 2.0, 2.1
  • .NET Framework 4.6.2+

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
  • they must be positive integers (for best portability, they should be <= 536870911 and not in the range 19000-19999)
  • they must be unique within a single type but the same numbers can be re-used in sub-types if inheritance is enabled
  • the identifiers must not conflict with any inheritance identifiers (discussed later)
  • lower numbers take less space - don't start at 100,000,000
  • the identifier is important; you can change the member-name, or shift it between a property and a field, but changing the identifier changes the data

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 was computed.  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. 
.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 was computed. 
.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (14)

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

Package Downloads
Confluent.SchemaRegistry.Serdes.Protobuf

Provides a Protobuf Serializer and Deserializer for use with Confluent.Kafka with Confluent Schema Registry integration

ProtoBufJsonConverter

Convert a protobuf message to a JSON string or object (and back) using the proto definition file.

protobuf-net.Grpc.Reflection

Package Description

Pulsar.Client

.NET client library for Apache Pulsar

Neuroglia.Serialization.Protobuf

Package Description

GitHub repositories (5)

Showing the top 5 popular GitHub repositories that depend on protobuf-net.Reflection:

Repository Stars
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
SteamRE/SteamKit
SteamKit2 is a .NET library designed to interoperate with Valve's Steam network. It aims to provide a simple, yet extensible, interface to perform various actions on the network.
asynkron/protoactor-dotnet
Proto Actor - Ultra fast distributed actors for Go, C# and Java/Kotlin
protobuf-net/protobuf-net.Grpc
GRPC bindings for protobuf-net and grpc-dotnet
confluentinc/confluent-kafka-dotnet
Confluent's Apache Kafka .NET client
Version Downloads Last updated
3.2.46 43 1/24/2025
3.2.12 4,775,348 3/4/2023
3.2.8 3,012 2/27/2023
3.2.0 9,137 2/20/2023
3.1.33 954,346 1/30/2023
3.1.25 12,268 11/9/2022
3.1.22 72,761 9/21/2022
3.1.17 27,523 6/26/2022
3.0.101 1,714,408 3/19/2021
3.0.73 155,925 12/2/2020
3.0.62 23,048 11/13/2020
3.0.52 4,116 10/3/2020
3.0.29 4,174 7/8/2020
3.0.27 27,338 7/6/2020
3.0.24 1,811 7/6/2020
3.0.21 6,303 7/5/2020
3.0.0 2,177 6/9/2020
3.0.0-alpha.155 325 6/8/2020
3.0.0-alpha.154 329 6/8/2020
3.0.0-alpha.152 329 6/5/2020
3.0.0-alpha.150 446 5/29/2020
3.0.0-alpha.143 357 4/5/2020
3.0.0-alpha.128 580 12/10/2019
3.0.0-alpha.122 314 10/29/2019
3.0.0-alpha.103 408 10/18/2019
3.0.0-alpha.91 387 10/14/2019
2.3.17 35,068 8/3/2018
2.3.16 4,511 8/2/2018
1.0.10 1,724 7/24/2018
1.0.8 3,475 6/10/2018
1.0.6 1,628 6/8/2018
1.0.2 2,301 3/7/2018
1.0.0 1,693 1/25/2018
0.9.1-alpha 1,313 6/21/2017
0.9.0 4,528 6/17/2017