Deserializes a response to a remote method call from the provided System.IO.Stream.
- serializationStream
- The stream from which to deserialize the object graph.
- handler
- The System.Runtime.Remoting.Messaging.HeaderHandler that handles any headers in the serializationStream. Can be null.
- methodCallMessage
- The System.Runtime.Remoting.Messaging.IMethodCallMessage that contains details about where the call came from.
The deserialized response to the remote method call.
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.