BinaryFormatter.DeserializeMethodResponse Method
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Function DeserializeMethodResponse ( _ serializationStream As Stream, _ handler As HeaderHandler, _ methodCallMessage As IMethodCallMessage _ ) As Object 'Usage Dim instance As BinaryFormatter Dim serializationStream As Stream Dim handler As HeaderHandler Dim methodCallMessage As IMethodCallMessage Dim returnValue As Object returnValue = instance.DeserializeMethodResponse(serializationStream, handler, methodCallMessage)
public Object DeserializeMethodResponse ( Stream serializationStream, HeaderHandler handler, IMethodCallMessage methodCallMessage )
public function DeserializeMethodResponse ( serializationStream : Stream, handler : HeaderHandler, methodCallMessage : IMethodCallMessage ) : Object
Parameters
- serializationStream
The stream from which to deserialize the object graph.
- handler
The HeaderHandler that handles any headers in the serializationStream. Can be a null reference (Nothing in Visual Basic).
- methodCallMessage
The IMethodCallMessage that contains details about where the call came from.
Return Value
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.
- SecurityPermission To provide serialization services. Associated enumeration: SecurityPermissionFlag.SerializationFormatter.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.