Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道 MVC 5 使用 Microsoft.AspNet.Identity,但是我仍然很困惑解决它,我似乎无法弄清楚如何做相当于:
Membership.GetUser(username).IsOnline
一般目的是获取在线用户列表。
目前没有内置的 IsOnline 等效功能,您可以通过跟踪用户的最后一次看到时间然后添加一个方法来检查他们是否在最后 5 分钟内看到过来复制该功能。
我们可能会在未来的版本中将最后看到的数据添加到默认实现中。