We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 069b091 commit 6a02f85Copy full SHA for 6a02f85
README.md
@@ -69,7 +69,10 @@ await socket.ConnectAsync();
69
var result = await channel.JoinAsync();
70
if (result.IsSuccess)
71
{
72
- var response = await channel.PushAsync<ChatMessage>("send_message", new { text = "Hello!" });
+ var response = await channel.PushAsync<ChatMessage>(
73
+ "send_message",
74
+ new { text = "Hello!" }
75
+ );
76
if (response.IsSuccess)
77
Console.WriteLine($"Sent with id: {response.Response.Id}");
78
}
0 commit comments