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!

BinarySerializer.Deserialize

Deserializes a stream into an object graph.

[Visual Basic]
Public Shared Function Deserialize( _
   ByVal stream As Stream _
) As Object
[C#]
public static object Deserialize(
   Stream stream
);
[C++]
public: static Object* Deserialize(
   Stream* stream
);
[JScript]
public static function Deserialize(
   stream : Stream
) : Object;

Parameters

stream
The stream from which to deserialize.

Return Value

The top (root) of the object graph.

Remarks

This is a simpler interface to Deserialize.

See Also

BinarySerializer Class | BinarySerializer Members | System.Runtime.Serialization.Formatters.Binary Namespace | BinaryFormatter