Search Results for

    Show / Hide Table of Contents

    Class INetworkSerializable

    Interface for values and objects that can be serialized/deserialized for network replication.

    Inheritance
    INetworkSerializable
    Assembly: FlaxEngine.dll
    File: Engine/Networking/INetworkSerializable.h
    Syntax
    public class INetworkSerializable

    Methods

    Deserialize(NetworkStream* stream)

    Deserializes object from the input stream.

    Declaration
    public virtual void Deserialize(NetworkStream* stream) = 0
    Parameters
    NetworkStream stream

    The input stream to read serialized data.

    Serialize(NetworkStream* stream)

    Serializes object to the output stream.

    Declaration
    public virtual void Serialize(NetworkStream* stream) = 0
    Parameters
    NetworkStream stream

    The output stream to write serialized data.

    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © 2012-2024 Wojciech Figat