I am using SignalR in my application.
In order to add or remove clients to a Group we use this API
Clients.Group.Add(clientID, groupname)
This is working fine.
My goal is to get the reverse of it i.e
I need to get all the clients of that group. I need to apply foreach on it and perform some operation in database.
Is there any API for finding all the clients of a group?
It's not possible. You'll have to manage groups manually if you want this functionality.
Taken from here. There are also examples on the same page on how to implement groups using a database server or Azure table storage.