I adding members to a SignalR group in an Azure function with SignalR binding like this:
await signalRGroupActions.AddAsync(
new SignalRGroupAction
{
ConnectionId = message.ConnectionId,
UserId = message.Recipient,
GroupName = message.CurrentGroupName,
Action = GroupAction.Add
}
);
But How can I get the list of group members and their details i.e., UserId, ConnectionId etc?