xmpp
xmpp copied to clipboard
An XMPP library written for .Net in C#.
Enable message delivery receipts according to XEP-0184 protocol for more infro read here => https://xmpp.org/extensions/xep-0184.html
How can I send Delivery Reciept or Auto Delivery Reciepts for messages using the XEP-0184 Protocol. Plus It'll be nice if there was a documentation for this library
Hello, when connect method is called, i have got a System.ObjectDisposedException. Here is my code : ``` XMPP.Client client = new XMPP.Client(); client.Settings.Account = "payneauj@localhost"; client.Settings.Id = "payneauj@localhost"; client.Settings.Password =...
How do I handle auto reconnect flow? Is there any setting in the library which handles it for us or we should explicitly handle it?
Hello, Does your library implements MUC? It is possible to create a temp conference room with selected contacts (as skype does it for example)? Thanks
I am trying to add XEP-0045 support in the library. For this I'll have to add muc, muc#user, muc#admin and muc#owner namespaces. I am not sure how to convert the...
The sample codes doesn't have any sample on how to register a user. The Sample code for Login connects and Logs in with same statement. Is there any way in...