SignalR OnConnected - 向连接的客户端发送消息

时间:2011-12-14 20:10:22

标签: c# asp.net signalr

非常简单的问题。为什么刚刚连接的客户端没有收到任何消息,但所有其他客户端都接收到广播?发送连接消息的客户端的正确方法是什么?

protected override void OnConnected(HttpContextBase context, string clientId)
{      
    GameAction message = new GameAction();
    message.text = "Player connected";
    Connection.Broadcast(serializer.Serialize(message));

    GameAction gamestate = new GameAction(); 
    gamestate.text = "Some client specific info";     
    Send(clientId, serializer.Serialize(gamestate));      
}

1 个答案:

答案 0 :(得分:3)

我认为您应该在javascript中的connection.start()函数中添加一个回调函数并重新发送命令。 JSON中单独类型的广播消息和回显消息可以帮助您在加入后检测连接状态... 风箱对我有用..

.....
connection.start({ callback: function () {
var username = getCookie("username");
connection.send(window.JSON.stringify({ type: 0, value: username }));
}
});
......