Click or drag to resize

IPortableObject Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
The IPortableObject interface is implemented by .NET classes that can self-serialize and deserialize their state to and from a POF data stream.

Namespace:  Tangosol.IO.Pof
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public interface IPortableObject

The IPortableObject type exposes the following members.

Methods
  NameDescription
Public methodReadExternal
Restore the contents of a user type instance by reading its state using the specified IPofReader object.
Public methodWriteExternal
Save the contents of a POF user type instance by writing its state using the specified IPofWriter object.
Top
Remarks
The ReadExternal(IPofReader) and WriteExternal(IPofWriter) methods of the IPortableObject interface are implemented by a class to give the class complete control its own POF serialization and deserialization.
See Also