Table of Contents

Class SocketRequest

Namespace
Supabase.Realtime.Socket
Assembly
Supabase.Realtime.dll

Representation of a Socket Request, used by Push

public class SocketRequest
Inheritance
SocketRequest
Inherited Members
Extension Methods

Properties

Event

The Event name

[JsonProperty("event")]
public string? Event { get; set; }

Property Value

string

JoinRef

The join ref (if applicable)

[JsonProperty("join_ref", NullValueHandling = NullValueHandling.Ignore)]
public string? JoinRef { get; set; }

Property Value

string

Payload

The json serializable payload

[JsonProperty("payload")]
public object? Payload { get; set; }

Property Value

object

Ref

The unique ref for this request.

[JsonProperty("ref")]
public string? Ref { get; set; }

Property Value

string

Topic

The topic being sent to

[JsonProperty("topic")]
public string? Topic { get; set; }

Property Value

string

Type

The type

[JsonProperty("type", NullValueHandling = NullValueHandling.Ignore)]
public string? Type { get; set; }

Property Value

string