1

用户离开活动站点以将其状态从在线更改为离线并向客户发送消息表明他离开了该站点。

4

1 回答 1

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 */);
}
于 2013-03-05T20:25:02.610 回答