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.
私は現在 agsXMPP ライブラリを試しています。OnPresence イベントでユーザーをツリーノードに追加しました。それはうまくいきますが、他のユーザーがオフラインになったときにツリーノードを更新したいので、彼のオフラインプレゼンスが必要です。チャットバディがオフラインになったときに結果を取得するにはどうすればよいですか?
バディがオフラインになると、タイプが使用不可の OnPresence イベントを取得します。
private void XmppCon_OnPresence(object sender, Presence pres) { if (pres.Type == PresenceType.unavailable) { // user goes offline } }