  | IIdentifiedDataSerializable Interface | 
 
            IIdentifiedDataSerializable is a serialization method as an alternative to standard serialization.
            It uses a factory to avoid reflection during deserialization.
            
IDataSerializableFactory 
    Namespace: 
   Hazelcast.IO.Serialization
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.11
Syntaxpublic interface IIdentifiedDataSerializable
Public Interface IIdentifiedDataSerializable
public interface class IIdentifiedDataSerializable
type IIdentifiedDataSerializable =  interface end
The IIdentifiedDataSerializable type exposes the following members.
Methods| 
								 
							 | Name | Description | 
|---|
  | GetFactoryId | Returns DataSerializableFactory factory id for this class.  | 
  | GetId | Returns type identifier for this class.  | 
  | ReadData | Reads fields from the input stream  | 
  | WriteData | Writes object fields to output stream  | 
Top
See Also