Table of Contents

Class PresenceDiffPayload<TPresence>

Namespace
Supabase.Realtime.Presence
Assembly
Supabase.Realtime.dll

a Presence Diff payload

public class PresenceDiffPayload<TPresence> where TPresence : BasePresence

Type Parameters

TPresence
Inheritance
PresenceDiffPayload<TPresence>
Inherited Members
Extension Methods

Properties

Joins

The joining presences.

[JsonProperty("joins")]
public Dictionary<string, PresenceDiffPayloadMeta<TPresence>>? Joins { get; set; }

Property Value

Dictionary<string, PresenceDiffPayloadMeta<TPresence>>

Leaves

The leaving presences.

[JsonProperty("leaves")]
public Dictionary<string, PresenceDiffPayloadMeta<TPresence>>? Leaves { get; set; }

Property Value

Dictionary<string, PresenceDiffPayloadMeta<TPresence>>