IGroupGetUserIds Method |
Namespace: AskiaPortalCmn
Get the list of users directly members of the current group
var group = GroupFactory.FindById(context, 3); var userIds = group.GetUserIds(); foreach(int userId in userIds) { Console.WriteLine($"User id: {userId}"); }