Subject: Problem using agsXMPP in a Windows GUI form
'Message' is an ambiguous reference between 'System.Windows.Forms.Message' and 'agsXMPP.protocol.client.Message'
From examples, I have tried to use:
xmpp.OnLogin += delegate (object o) { xmpp.Send(new Message("test@jabber.org", MessageType.chat, "Hello, how are you?")); };
to send a message. The Message is underlined in Visual Studio and the above error is there. Is there any way around this?
Thanks
From examples, I have tried to use:
xmpp.OnLogin += delegate (object o) { xmpp.Send(new Message("test@jabber.org", MessageType.chat, "Hello, how are you?")); };
to send a message. The Message is underlined in Visual Studio and the above error is there. Is there any way around this?
Thanks