.NET Client Documentation
5.5.0
Search Results for

    Show / Hide Table of Contents

    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 bool value to this serialization output

    WriteBooleanArray(bool[])

    Writes the bool[] to this serialization output

    WriteByte(byte)

    Writes a byte value to this serialization output

    WriteByteArray(byte[])

    Writes the byte[] to this serialization output

    WriteBytes(string)

    Writes each char of the value with WriteByte(byte) method to this serialization output ///

    WriteChar(char)

    Writes a char value to this serialization output

    WriteCharArray(char[])

    Writes the char[] to this serialization output

    WriteChars(string)

    Writes each char of the value with WriteChar(char) method to this serialization output

    WriteDouble(double)

    Writes a double value to this serialization output

    WriteDoubleArray(double[])

    Writes the double[] to this serialization output

    WriteFloat(float)

    Writes a float value to this serialization output

    WriteFloatArray(float[])

    Writes the float[] to this serialization output

    WriteInt(int)

    Writes a int value to this serialization output

    WriteIntArray(int[])

    Writes the int[] to this serialization output

    WriteLong(long)

    Writes a long value to this serialization output

    WriteLongArray(long[])

    Writes the long[] to this serialization output

    WriteObject(object)

    Writes an object to this serialization output using hazelcast serialization

    WriteSByte(sbyte)

    Writes a sbyte value to this serialization output

    WriteShort(short)

    Writes a short value to this serialization output

    WriteShortArray(short[])

    Writes the short[] to this serialization output

    WriteString(string)

    Writes a string value in UTF-8 encoding to this serialization output

    WriteStringArray(string[])

    Writes the string[] to this serialization output

    WriteUShort(ushort)

    Writes a ushort value to this serialization output

    In this article
    Back to top Copyright © 2010-2024 Hazelcast, Inc. All rights reserved.
    Generated by DocFX.