Search Results for

    Show / Hide Table of Contents

    Class BaseRPCResponse

    The base RPC response. This is a base class as we can't store templated classes. We can however store this and use properties to pass the value back to where it is understood.

    Inheritance
    Object
    BaseRPCResponse
    RPCResponse<T>
    Namespace: FNNLib.RPC
    Assembly: FNNLib.dll
    Syntax
    public abstract class BaseRPCResponse

    Properties

    | Improve this Doc View Source

    clientID

    The client ID of the requester.

    Declaration
    public ulong clientID { get; }
    Property Value
    Type Description
    UInt64
    | Improve this Doc View Source

    isDone

    Whether or not the response is recieved.

    Declaration
    public bool isDone { get; }
    Property Value
    Type Description
    Boolean
    | Improve this Doc View Source

    isSuccessful

    Whether or not a value was received.

    Declaration
    public bool isSuccessful { get; }
    Property Value
    Type Description
    Boolean
    | Improve this Doc View Source

    responseID

    The response ID.

    Declaration
    public ulong responseID { get; }
    Property Value
    Type Description
    UInt64
    • Improve this Doc
    • View Source
    In This Article
    Back to top (C) 2020 Reece Mackie. Released under the MIT License.