Serialization is the process of taking data in memory and reformatting it to store, to send it across the network, or to construct an object in memory. A large part of message transmission and reception processes in networking use object serialization. This chapter covers the two serialization formats used in this book: JSON and binary.
Serialization Basics
In its basic form, serialization takes the public properties or fields of an instance of a class or struct and ...