Echo
から派生したクラスを使用PersistentConnection
し、特定の接続にメッセージを送信したい:
var client = GlobalHost.ConnectionManager.GetConnectionContext<Echo>();
client.Connection.Broadcast(msg);
しかし、特定の接続IDに送信したいです。接続ごとにグループを作成する必要がありますか、またはハブの使用を開始する必要がありますか、または ID で接続を選択する簡単な方法があります。
GetConnectionById(id).Send(msg);
?