Class BaseBroadcast
Represents an arbitrary Broadcast response.
public class BaseBroadcast
- Inheritance
-
BaseBroadcast
- Derived
- Inherited Members
Properties
Event
The event.
[JsonProperty("event")]
public string? Event { get; set; }
Property Value
Meta
Additional metadata associated with a broadcast event. Populated by the server when a message is replayed from history on a private channel; otherwise absent.
[JsonProperty("meta", NullValueHandling = NullValueHandling.Ignore)]
public BroadcastMeta? Meta { get; set; }
Property Value
Payload
The payload.
[JsonProperty("payload")]
public Dictionary<string, object>? Payload { get; set; }