1 out of 1 rated this helpful - Rate this topic

BinaryFormatter.DeserializeMethodResponse Method

Deserializes a response to a remote method call from the provided Stream.

Namespace: System.Runtime.Serialization.Formatters.Binary
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.
Exception typeCondition

ArgumentNullException

The serializationStream is a null reference (Nothing in Visual Basic).

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.

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.

.NET Framework

Supported in: 2.0, 1.1, 1.0
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.