IObjectDataOutput Interface
Namespace: Hazelcast.Serialization
Assembly: Hazelcast.Net.dll
Provides encoding methods for primitive and array of primitive types writing to the serialized byte array.
public interface IObjectDataOutput
Properties
Name | Description |
---|---|
Endianness | The configured endianness via Endianness |
Methods
Name | Description |
---|---|
ToByteArray(int) | Creates a new byte array with the internal content of the serialized data. |
Write(byte[]) | Writes the content of the provided byte array to this serialization output |
Write(byte[], int, int) | Writes the content of the provided byte array to this serialization output |
WriteBoolean(bool) | Writes a |
WriteBooleanArray(bool[]) | Writes the |
WriteByte(byte) | Writes a |
WriteByteArray(byte[]) | Writes the |
WriteBytes(string) | Writes each |
WriteChar(char) | Writes a |
WriteCharArray(char[]) | Writes the |
WriteChars(string) | Writes each |
WriteDouble(double) | Writes a |
WriteDoubleArray(double[]) | Writes the |
WriteFloat(float) | Writes a |
WriteFloatArray(float[]) | Writes the |
WriteInt(int) | Writes a |
WriteIntArray(int[]) | Writes the |
WriteLong(long) | Writes a |
WriteLongArray(long[]) | Writes the |
WriteObject(object) | Writes an object to this serialization output using hazelcast serialization |
WriteSByte(sbyte) | Writes a |
WriteShort(short) | Writes a |
WriteShortArray(short[]) | Writes the |
WriteString(string) | Writes a |
WriteStringArray(string[]) | Writes the |
WriteUShort(ushort) | Writes a |