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.
ユーザーがステータスをオンラインからオフラインに変更し、クライアントにメッセージを送信するためにイベントサイトを離れることは、ユーザーがサイトを離れたことを示します。
切断されたイベントに結び付けることができます。
したがって、ハブにメソッドを追加します。
public override Task OnDisconnected() { // The Context.ConnectionId is the identity of the disconnected client return Clients.All.userOffline(/* Something here to identify the user */); }