Table of Contents

Class BroadcastMeta

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

Server-supplied metadata attached to a broadcast event, present when the message was replayed from history on a private channel.

public class BroadcastMeta
Inheritance
BroadcastMeta
Inherited Members

Properties

Id

The unique identifier the server assigned to the broadcast message.

[JsonProperty("id")]
public string? Id { get; set; }

Property Value

string

Replayed

Whether this event was replayed from history rather than received live.

[JsonProperty("replayed")]
public bool Replayed { get; set; }

Property Value

bool