Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サーバーで使用SignalR PersistentConnectionしていますが、0.53から1.0に更新した後、奇妙な問題に直面しています。経由でクライアントをグループに追加してからグループにGroups.Add(id, name)データを送信すると、最初に接続されたクライアントのみがデータを受信します。Groupsこれは、stackoverflowとsignalrgithubで見つけた他の問題とは似ていないようです。解決策を楽しみにしています。
SignalR
PersistentConnection
Groups.Add(id, name)
Groups
Groups.Addを返しますTask。新しく追加されたクライアントが受信することを期待するグループにメッセージを送信する前にawait、を呼び出す必要があります。Groups.Add
Groups.Add
Task
await