This documentation is archived and is not being maintained.
BinaryFormatter::Serialize Method (Stream, Object, array<Header>)
Visual Studio 2010
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 nullptr.
Implements
IRemotingFormatter::Serialize(Stream, Object, array<Header>)| Exception | Condition |
|---|---|
| ArgumentNullException | The serializationStream is nullptr. |
| 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. |
- SecurityPermission
To provide serialization services. Associated enumeration: SecurityPermissionFlag::SerializationFormatter.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: