用户在信号器中离开站点时的事件是什么?

时间:2013-03-05 15:12:15

标签: asp.net asp.net-mvc signalr

用户离开活动网站的目的是将其状态从在线更改为离线,并向客户发送消息说明他离开了网站。

1 个答案:

答案 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 */);
}