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.
Namespace: FNNLib.RPC
Assembly: FNNLib.dll
Syntax
public abstract class BaseRPCResponse
Properties
| Improve this Doc View SourceclientID
The client ID of the requester.
Declaration
public ulong clientID { get; }
Property Value
| Type | Description |
|---|---|
| UInt64 |
isDone
Whether or not the response is recieved.
Declaration
public bool isDone { get; }
Property Value
| Type | Description |
|---|---|
| Boolean |
isSuccessful
Whether or not a value was received.
Declaration
public bool isSuccessful { get; }
Property Value
| Type | Description |
|---|---|
| Boolean |
responseID
The response ID.
Declaration
public ulong responseID { get; }
Property Value
| Type | Description |
|---|---|
| UInt64 |