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!

IFormatter.Deserialize

Begins the process of deserialization.

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

Parameters

serializationStream
The delegate designed to handle headers. This parameter may be a null reference (in Visual Basic Nothing).

Remarks

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

See Also

IFormatter Interface | IFormatter Members | System.Runtime.Serialization Namespace