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 DeserializeLocal(
	BinaryReader reader
)
Visual Basic
Sub DeserializeLocal ( _
	reader As BinaryReader _
)
Visual C++
void DeserializeLocal(
	BinaryReader^ reader
)

Parameters

reader
Type: System.IO..::..BinaryReader
A BinaryReader 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