I am trying to implement chat message service using Jabber-net.dll (for mono) in my app(First version already in market developed in Xamarin). I have just added Jabber library in my project and try to login using following code.
JabberClient jc = new JabberClient();
jc.User = "basit"; // just the username, not including the @domain.
jc.Server = "jabber.org";
jc.Password = "sdsoltest";
//jc.NetworkHost = "talk.l.google.com";
jc.Login();
But getting this error:
Error CS0584: Internal compiler error: Could not import type
jabber.client.JabberClient' from jabber-net, Version=2.1.0.710, Culture=neutral, PublicKeyToken=924c5b18328d6f09' (CS0584)
how can i resolve this error?