This documentation is archived and is not being maintained.
BinaryFormatter::Deserialize Method (Stream, HeaderHandler)
Visual Studio 2010
Deserializes the specified stream into an object graph. The provided HeaderHandler handles any headers in that stream.
Assembly: mscorlib (in mscorlib.dll)
public: virtual Object^ Deserialize( Stream^ serializationStream, HeaderHandler^ handler ) sealed
Parameters
- serializationStream
- Type: System.IO::Stream
The stream from which to deserialize the object graph.
- handler
- Type: System.Runtime.Remoting.Messaging::HeaderHandler
The HeaderHandler that handles any headers in the serializationStream. Can be nullptr.
Return Value
Type: System::ObjectThe deserialized object or the top object (root) of the object graph.
Implements
IRemotingFormatter::Deserialize(Stream, HeaderHandler)| Exception | Condition |
|---|---|
| ArgumentNullException | The serializationStream is nullptr. |
| SerializationException | The serializationStream supports seeking, but its length is 0. -or- The target type is a Decimal, but the value is out of range of the Decimal type. |
| 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: