NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IRemotingFormatter.Deserialize

Begins the process of deserialization. For purposes of serialization, this will probably rely on a stream that has been connected to the formatter through other means.

[Visual Basic]
Function Deserialize( _
   ByVal serializationStream As Stream, _
   ByVal handler As HeaderHandler _
) As Object
[C#]
object Deserialize(
   Stream serializationStream,
   HeaderHandler handler
);
[C++]
Object* Deserialize(
   Stream* serializationStream,
   HeaderHandler* handler
) = 0;
[JScript]
function Deserialize(
   serializationStream : Stream,
   handler : HeaderHandler
) : Object;

Parameters

serializationStream
[To be supplied.]
handler
The delegate designed to handle headers. See the SOAP specification for additional information on valid headers. The parameter may be null.

Return Value

The root object graph.

See Also

IRemotingFormatter Interface | IRemotingFormatter Members | System.Runtime.Remoting Namespace