[TIBCO.EMS .NET client library 5.1 documentation]

Deserialize a data stream to reconstruct an object.

Namespace:  TIBCO.EMS
Assembly:  TIBCO.EMS (in TIBCO.EMS.dll)

Syntax

void Deserialize(
	Stream stream
)
Sub Deserialize ( _
	stream As Stream _
)
void Deserialize(
	Stream^ stream
)

Parameters

stream
Type: System.IO..::.Stream
The stream from which to deserialize the object

Remarks

When this method is called, the stream already contains context information. That context information resides before the write position of the stream when this method is called (call it initWritePos). Your implementation of this method must not modify that context information, nor reset the stream’s write pointer to a position before initWritePos.

Do not close the stream after reading or modify its content.

See Also