Table of Contents

Class BaseBroadcast

Namespace
Supabase.Realtime.Models
Assembly
Supabase.Realtime.dll

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

string

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

BroadcastMeta

Payload

The payload.

[JsonProperty("payload")]
public Dictionary<string, object>? Payload { get; set; }

Property Value

Dictionary<string, object>