我一直试图为持续聊天制作lync wpf应用程序, 我之前在silverlight应用程序上做过类似的事情并且工作正常。
wpf和silverlight LyncClient之间似乎存在一些差异,但我似乎无法在网络上找到任何内容。
我的代码是:
LyncClient _client = LyncClient.getClient();
if (_client.state == ClientState.SignedIn)
{
if (_client.RoomManager.State == RoomManagerState.Enabled)
{
if (_client.RoomManager.FollowedRooms == null)
{
MessageBox.show("not working");
}
else
{
MessageBox.show("working");
}
}
}
任何想法?
答案 0 :(得分:0)