BinaryFormatter::DeserializeMethodResponse Method
Deserializes a response to a remote method call from the provided Stream.
Assembly: mscorlib (in mscorlib.dll)
public:
Object^ DeserializeMethodResponse(
Stream^ serializationStream,
HeaderHandler^ handler,
IMethodCallMessage^ methodCallMessage
)
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.
- methodCallMessage
- Type: System.Runtime.Remoting.Messaging::IMethodCallMessage
The IMethodCallMessage that contains details about where the call came from.
| Exception | Condition |
|---|---|
| ArgumentNullException | The serializationStream is nullptr. |
| SerializationException | The serializationStream supports seeking, but its length is 0. |
| SecurityException | The caller does not have the required permission. |
Details about the caller object are not sent to the remote object during the method call. Instead, these details are obtained from the original method call that is passed to the current method in the methodCallMessage parameter.
In order for deserialization to succeed the current position in the stream must be at the beginning of the object graph.
- 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.