BinaryFormatter::Deserialize Method (Stream^, HeaderHandler^)
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 null.
Return Value
Type: System::Object^The deserialized object or the top object (root) of the object graph.
| Exception | Condition |
|---|---|
| ArgumentNullException | The serializationStream is null. |
| SerializationException | |
| SecurityException | The caller does not have the required permission. |
Headers are used only for specific remoting applications.
In order for deserialization to succeed the current position in the stream must be at the beginning of the object graph.
Security Note
|
|---|
Calling this method with untrusted data is a security risk. Call this method only with trusted data. For more information, see Untrusted Data Security Risks. |
To provide serialization services. Associated enumeration: SecurityPermissionFlag::SerializationFormatter.
Available since 1.1
