Table of Contents

Interface IRealtimeSocketResponse

Namespace
Supabase.Realtime.Interfaces
Assembly
Supabase.Realtime.dll

Contract for a socket response

public interface IRealtimeSocketResponse

Properties

Event

The parsed event type

Constants.EventType Event { get; }

Property Value

Constants.EventType

Payload

The opinionated payload matching a SocketResponsePayload

SocketResponsePayload? Payload { get; set; }

Property Value

SocketResponsePayload

Ref

The unique id of this response

string? Ref { get; set; }

Property Value

string

Topic

The topic.

string? Topic { get; set; }

Property Value

string

_event

The raw event name

string? _event { get; set; }

Property Value

string