【发布时间】:2013-06-13 15:44:11
【问题描述】:
我正在尝试在我的应用程序中使用 Jabber-net.dll(用于单声道)实现聊天消息服务(第一个版本已经在 Xamarin 中开发)。我刚刚在我的项目中添加了 Jabber 库并尝试使用以下代码登录。
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();
但是得到这个错误:
Error CS0584: Internal compiler error: Could not import typejabber.client.JabberClient' 来自jabber-net, Version=2.1.0.710, Culture=neutral, PublicKeyToken=924c5b18328d6f09' (CS0584)
我该如何解决这个错误?
【问题讨论】:
-
你找到解决这个@Basit Zla 的方法了吗?
-
你在这方面有什么成功吗?
标签: c# xmpp xamarin.android xamarin