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
Payload
The opinionated payload matching a SocketResponsePayload
SocketResponsePayload? Payload { get; set; }
Property Value
Ref
The unique id of this response
string? Ref { get; set; }
Property Value
Topic
The topic.
string? Topic { get; set; }
Property Value
_event
The raw event name
string? _event { get; set; }