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!

Formatter.Deserialize

When overidden in a derived class, deserializes the stream attached to the formatter when it was created, creating a graph of objects that is the same as the graph originally serialized into that stream.

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

Parameters

serializationStream
The stream to deserialize.

See Also

Formatter Class | Formatter Members | System.Runtime.Serialization Namespace