forked from protobuf-net/protobuf-net
-
Notifications
You must be signed in to change notification settings - Fork 1
/
StartHere.txt
52 lines (38 loc) · 2.3 KB
/
StartHere.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
What is protobuf-net?
=====================
protobuf-net is a binary serialization engine, along similar lines to BinaryFormatter
but using the "protocol buffers" [PB] specification as laid out by Google.
The core protobuf-net library is a single dll; other projects are presented for
testing and example purposes.
Many PB implementations start with a .proto text file (describing the types), with
the developer running a command-line tool to generate code in their target
language. Deliberately, protobuf-net started the other way around: it is designed
to work with existing .NET types at runtime. This allows you to use your existing
data objects, but still with lots of optimisations to keep things very fast.
There is a C# code generation version (courtesy of Jon Skeet), and a proposed future
extension is to allow generation of protobuf-net classes from a .proto file.
================
How do I use it?
================
These steps are a walkthrough of the QuickStart project.
0: add a reference to protobuf-net
protobuf-net is a runtime engine, and the assembly is required (and should be
deployed with your program).
1: define your data objects ("1 Data Objects.cs")
protobuf-net uses regular .NET classes. The only requirement (in common with
other serializers such as XmlSerializer) is that there must be a public
parameterless constructor, and it must be marked for serialization.
Any properties you want to serialize must have a "getter" and "setter",
and an integer "tag" is required on each (used to uniquely identify each
property when serialized). Collection properties can also be serialized, but
it is not necessary to have a "setter", as items can be added to the
existing list.
2: write objects to a file and read them back ("2 File Access.cs")
This sample shows writing object-graphs to simple streams such as FileStream,
using the Serialize and Deserialize methods.
3: write objects to a socket and read them back ("3 Sockets.cs")
Network IO is more complicated, especially since we can reasonably expect
a conversation between client and server on the same connection, but each
needs to know how much data is part of the current request/response. This
sample shows using the SerializeWithLengthPrefix/DeserializeWithLengthPrefix
methods to communicate over a socket.