Class NetworkRpcParams
Additional context parameters for Network RPC execution (eg. to identify who sends the data).
Inheritance
System.Object
NetworkRpcParams
Namespace: FlaxEngine.Networking
Assembly: FlaxEngine.CSharp.dll
Syntax
[Unmanaged]
public sealed class NetworkRpcParams : ValueType
Fields
SenderId
The ClientId of the network client that is a data sender. Can be used to detect who send the incoming RPC or replication data. Ignored when sending data.
Declaration
public uint SenderId
Field Value
System.UInt32
|
TargetIds
The list of ClientId of the network clients that should receive RPC. Can be used to send RPC to a specific client(s). Ignored when receiving data.
Declaration
public uint[] TargetIds
Field Value
System.UInt32[]
|