ISerializer
Description
- Derived from
- Extended by
-
SerializerBase abstract
Base interface for classes that read and write data during conversion of ISerializable objects to binary data streams.
Public / Methods
ReadBool
Returns a data token of the object being deserialized.
- IOException
-
If an I/O error has occurred.
ReadBoolArray
Returns a data token of the object being deserialized.
- IOException
-
If an I/O error has occurred.
ReadByteBuffer
Returns a data token of the object being deserialized.
- IOException
-
If an I/O error has occurred.
ReadFloat32Array
Returns a data token of the object being deserialized.
- IOException
-
If an I/O error has occurred.
ReadFloat64Array
Returns a data token of the object being deserialized.
- IOException
-
If an I/O error has occurred.
ReadInt16Array
Returns a data token of the object being deserialized.
- IOException
-
If an I/O error has occurred.
ReadInt32Array
Returns a data token of the object being deserialized.
- IOException
-
If an I/O error has occurred.
ReadInt64Array
Returns a data token of the object being deserialized.
- IOException
-
If an I/O error has occurred.
ReadInt8Array
Returns a data token of the object being deserialized.
- IOException
-
If an I/O error has occurred.
ReadObject
Returns a data token of the object being deserialized.
- IOException
-
If an I/O error has occurred.
ReadString
Returns a data token of the object being deserialized.
- IOException
-
If an I/O error has occurred.
WriteBool
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
WriteBoolArray
2 overloads
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
WriteByteBuffer
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
WriteFloat32Array
2 overloads
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
WriteFloat64Array
2 overloads
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
WriteInt16Array
2 overloads
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
WriteInt32Array
2 overloads
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
WriteInt64Array
2 overloads
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
WriteInt8Array
2 overloads
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
WriteObject
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
WriteString
Writes the value of a data token of the object being serialized.
- IOException
-
If an I/O error has occurred.
Extensions
ReadArray
Reads an array of objects.
This method can also be used to read elements that have been written using WriteCollection.
- IOException
-
If an I/O error has occurred.
- See also
ReadCollection
Reads a collection of objects.
This method can also be used to read elements that have been written using WriteArray.
- IOException
-
If an I/O error has occurred.
- See also
WriteArray
Serializes an array of objects.
This method can also be used to write elements that will be read using ReadCollection.
- IOException
-
If an I/O error has occurred.
- See also
WriteCollection
Writes a collection of objects.
This method can also be used to write elements that will be read using ReadArray.
- IOException
-
If an I/O error has occurred.
- See also