<How to listen to all notifications sended using S...
# stackoverflow
u
How to listen to all notifications sended using Signal R and Android I'm trying to send a notification using SignalR with android and I was able to only send from the android app to the Server but not to receive the same data that was sent. I'm using .NET6. This is how I'm trying to implement this. Program Class : builder.Services.AddSignalR(); var app = builder.Build(); app.MapHub("/notification"); Notification Class : public class Notification : Hub { public async Task SendMessage(string user, string message) { Debug.WriteLine("Hello...