Windows 8 Metro アプリで「agsXMPP」を使用しています。
private void loginclick_Click_1(object sender, RoutedEventArgs e)
{
if (!string.IsNullOrEmpty(id.Text) && !string.IsNullOrEmpty(id.Text))
client.Login(id.Text, pwd.Password);
client.OnLoginResult = success => appendLog("Connection to Facebook established " + (success ? "" : "un") + "successfully");
client.OnLogout = () => appendLog("Client logged out");
client.OnMessageReceived = (msg, user) => appendLog(user.name + ":" + msg);
client.OnUserIsTyping = user => appendLog("The user " + user.name + " " + (user.isTyping ? "started typing" : "stopped typing"));
client.OnUserAdded = user =>
{
appendLog("User " + user.name + " is now available for chat");
changeContactList(user.name, true);
};
client.OnUserRemoved = user =>
{
appendLog("User " + user.name + " is not longer available for chat");
changeContactList(user.name, false);
};
txtMsgInput.KeyUp += new KeyEventHandler(txtMsgInput_KeyDown);
}
上記のコードでは、この行でエラーが発生しています。
client.OnMessageReceived = (msg, user) => appendLog(user.name + ":" + msg);
エラーは、
Error 8 The type 'agsXMPP.protocol.client.Message' is defined in an assembly that is not referenced. You must add a reference to assembly 'agsXMPP, Version=1.1.1.0, Culture=neutral, PublicKeyToken=ff839b81f1debe86'.
その行をコメントアウトして実行した場合。それは正常に実行され、チャットで利用可能な人のリストを取得します...これらのリンクを確認しました、
NugetでFluentValidationを更新した後のNinjectValidatorFactoryでの奇妙なエラー
理解できませんが、誰かがこのエラーについて簡単に教えてくれますか? . .
前もって感謝します!