Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi there,
Is there a quick and easy way to get all logged in members in 6.1.6?
Cheers
Moshe
Hi,
Use the method GetAllUsers of Membership and check which are online. Something like this:
var onlineusers = Membership.GetAllUsers().Where(x=> x.IsOnline).ToList();
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Get all logged in members
Hi there,
Is there a quick and easy way to get all logged in members in 6.1.6?
Cheers
Moshe
Hi,
Use the method GetAllUsers of Membership and check which are online. Something like this:
var onlineusers = Membership.GetAllUsers().Where(x=> x.IsOnline).ToList();
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.