- serializationStream
- The stream where the formatter puts the serialized data. This stream can reference a variety of backing stores (such as files, network, memory, and so on).
- graph
- The object, or root of the object graph, to serialize. All child objects of this root object are automatically serialized.
The IFormatter.Serialize(System.IO.Stream, object) method automatically serializes the provided objects, and all objects connected to it, to the provided stream.
By default, the serialization process records an object's state by gathering the values of all its fields (public and private). These fields are saved to the stream along with information about the object such as the name qualified by the assembly for its type.