Where can I find a simple example of creating a message to send?
SharpXMPP.XMPP.JID servjid = new SharpXMPP.XMPP.JID()
{
User = user, Domain = server, Resource = Environment.MachineName
};
var xmppClient = new SharpXMPP.XmppClient(servjid, pass, false);
// Do I have to create the XML or is there methods to do it?
xmppClient.sxmppClient.Send(?????????);
Where can I find a simple example of creating a message to send?