Dear all,
I'm a new comer with jabber net, but right now I have a problem that I want to create new user when AuthenError,
I can register User with username and password only so I want to add more information such as Full Name or Email etc.,
I found many examples that let to do as I said above with Xdata like this:
// Modern servers will send an x:data form.
muzzle.XDataForm f = new muzzle.XDataForm(r.Form);
if (f.ShowDialog() != DialogResult.OK)
return false; // Cancel the registration process.
f.FillInResponse(r.Form);
so I want to register new user without using Xdataform, I mean I will you my own form that I've already design.
Please help me, please