How to create Jabber account using agsXMPP library in c# .net.?
I have tried to chat between two Jabber users, but for both of them, the JID was already created on Jabber website registration.
But, I want to create JID registration using agsXMPP library in C# application.
Is this possible?
You have to set the RegisterAccount property to true before you connect. The library tries to register the new account and logs in with this account after success (if success).
OnRegistered event is raised when the account was created successful.
OnRegisterError event is called on errors.