Table of Contents

Class BroadcastOptions

Namespace
Supabase.Realtime.Broadcast
Assembly
Supabase.Realtime.dll

Options

public class BroadcastOptions
Inheritance
BroadcastOptions
Inherited Members

Constructors

BroadcastOptions(bool, bool)

Initializes broadcast options

public BroadcastOptions(bool broadcastSelf = false, bool broadcastAck = false)

Parameters

broadcastSelf bool
broadcastAck bool

Properties

BroadcastAck

ack option instructs server to acknowledge that broadcast message was received

[JsonProperty("ack")]
public bool BroadcastAck { get; set; }

Property Value

bool

BroadcastSelf

self option enables client to receive message it broadcast

[JsonProperty("self")]
public bool BroadcastSelf { get; set; }

Property Value

bool