Load the state from the passed stream reader object.

Namespace: Alachisoft.NCache.Runtime.Serialization
Assembly: Alachisoft.NCache.Runtime (in Alachisoft.NCache.Runtime.dll) Version: 4.1.0.0 (4.1.0.0)

Syntax

C#
void Deserialize(
	CompactReader reader
)
Visual Basic
Sub Deserialize ( _
	reader As CompactReader _
)
Visual C++
void Deserialize(
	CompactReader^ reader
)

Parameters

reader
Type: Alachisoft.NCache.Runtime.Serialization.IO..::..CompactReader
A [!:CompactBinaryReader] object

Remarks

As per current implementation when a ICompactSerializable is deserialized the default constructor is not invoked, therefore the object must "construct" itself in Deserialize(CompactReader).

See Also