Table of Contents

Class RpcInvocationData

Namespace
LiveKit

Data supplied to an RPC method handler registered with RegisterRpcMethod(string, RpcHandler).

public class RpcInvocationData
Inheritance
RpcInvocationData
Inherited Members
Extension Methods

Properties

CallerIdentity

The identity of the RemoteParticipant that made the RPC call.

public string CallerIdentity { get; set; }

Property Value

string

Payload

The string payload data sent by the caller.

public string Payload { get; set; }

Property Value

string

RequestId

A unique identifier for the RPC request.

public string RequestId { get; set; }

Property Value

string

ResponseTimeout

The maximum time available to respond before the caller times out.

public float ResponseTimeout { get; set; }

Property Value

float