I've been trying to make a lync wpf application for persistent chat, I did before something like it on silverlight application and it worked fine.
there seems to be some difference between the wpf and silverlight LyncClient but I cannot seem to find anything on the web.
my code is:
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");
}
}
}
any ideas?