BinaryFormatter::Serialize Method (Stream^, Object^, array<Header^>^)
Serializes the object, or graph of objects with the specified top (root), to the given stream attaching the provided headers.
Assembly: mscorlib (in mscorlib.dll)
public: virtual void Serialize( Stream^ serializationStream, Object^ graph, array<Header^>^ headers ) sealed
Parameters
- serializationStream
-
Type:
System.IO::Stream^
The stream to which the object is to be serialized.
- graph
-
Type:
System::Object^
The object at the root of the graph to serialize.
- headers
-
Type:
array<System.Runtime.Remoting.Messaging::Header^>^
Remoting headers to include in the serialization. Can be null.
| Exception | Condition |
|---|---|
| ArgumentNullException | The serializationStream is null. |
| SerializationException | An error has occurred during serialization, such as if an object in the graph parameter is not marked as serializable. |
| SecurityException | The caller does not have the required permission. |
The serialization process includes the information supplied in the headers parameter at the front of the serialized stream.
Headers are used only for specific remoting applications.
To provide serialization services. Associated enumeration: SecurityPermissionFlag::SerializationFormatter.
Available since 1.1