如何使用agsXMPP库注销JID

时间:2014-07-17 15:04:09

标签: c# xmpp agsxmpp

我正在使用agsXMPP库在c#中创建一个jabber应用程序。

我想知道如何从所有设备全局注销JID。

从相同的应用程序注销我使用的代码运行良好,如下

 private void button2_Click(object sender, EventArgs e)//logout
    {
        x.SocketDisconnect();//x is the xmpp client connection name
    }

1 个答案:

答案 0 :(得分:2)

XmppClientConnection.Close();

然后等待OnClose事件作为通知。