Class SocketRequest
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
JoinRef
The join ref (if applicable)
[JsonProperty("join_ref", NullValueHandling = NullValueHandling.Ignore)]
public string? JoinRef { get; set; }
Property Value
Payload
The json serializable payload
[JsonProperty("payload")]
public object? Payload { get; set; }
Property Value
Ref
The unique ref for this request.
[JsonProperty("ref")]
public string? Ref { get; set; }
Property Value
Topic
The topic being sent to
[JsonProperty("topic")]
public string? Topic { get; set; }
Property Value
Type
The type
[JsonProperty("type", NullValueHandling = NullValueHandling.Ignore)]
public string? Type { get; set; }