Hazelcast .NET
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

    Endianness

    The configured endianness via Endianness

    Methods

    ToByteArray(Int32)

    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[], Int32, Int32)

    Writes the content of the provided byte array to this serialization output

    WriteBoolean(Boolean)

    Writes a bool value to this serialization output

    WriteBooleanArray(Boolean[])

    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(Single)

    Writes a float value to this serialization output

    WriteFloatArray(Single[])

    Writes the float[] to this serialization output

    WriteInt(Int32)

    Writes a int value to this serialization output

    WriteIntArray(Int32[])

    Writes the int[] to this serialization output

    WriteLong(Int64)

    Writes a long value to this serialization output

    WriteLongArray(Int64[])

    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(Int16)

    Writes a short value to this serialization output

    WriteShortArray(Int16[])

    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(UInt16)

    Writes a ushort value to this serialization output

    In This Article
    Back to top Copyright © 2010-2021 Hazelcast, Inc. All rights reserved.
    Generated by DocFX.