用户离开活动网站的目的是将其状态从在线更改为离线,并向客户发送消息说明他离开了网站。
答案 0 :(得分:3)
您可以加入已断开连接的事件。
在您的集线器中添加方法:
public override Task OnDisconnected()
{
// The Context.ConnectionId is the identity of the disconnected client
return Clients.All.userOffline(/* Something here to identify the user */);
}