Replies: 2 comments 3 replies
-
Try checking here! https://github.com/supabase-community/realtime-csharp#broadcast |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks what's the difference between supabase-csharp package and realtime-csharp does it just have realtime part of supabase-csharp? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
So am trying to listen on any events or specific events in realtime channel how would i go ahead and do that?
for example it ried doing something like this
var channel = supabase.Realtime.Channel("1"); await channel.Subscribe(); channel.AddMessageReceivedHandler((sender, args) => { Console.WriteLine(args.Payload); });
in Supabase Viewer i could see that there was stuff being sent but everytime it was sent in was just a emptySupbase.Realtime.Socket.SocketResponsePayload
Beta Was this translation helpful? Give feedback.
All reactions