Subject: Use the class file to send a simple file
Hi,
i'm doing a very little application. I used your code to send a message to another JID :
It works but now i'd like to use the same sample code in order to send a file to another JID, how can I do it?
Thanks
bart38
i'm doing a very little application. I used your code to send a message to another JID :
XmppClientConnection xmpp = new XmppClientConnection("jabber.org");
xmpp.Open("myusername", "mysecret");
xmpp.OnLogin += delegate(object o) { xmpp.Send(new Message("test@jabber.org", MessageType.chat, "Hello, how are you?")); };
xmpp.Open("myusername", "mysecret");
xmpp.OnLogin += delegate(object o) { xmpp.Send(new Message("test@jabber.org", MessageType.chat, "Hello, how are you?")); };
It works but now i'd like to use the same sample code in order to send a file to another JID, how can I do it?
Thanks
bart38