我们小组正在使用skype for business 2016.我使用Microsoft.Lync.Model开始对话发送消息,有时候该对话中的某些人可以收到消息,其中一些人只显示没有内容的通知窗口,这个如果我在对话中添加超过2个联系人,则情况最为明显。 这是代码:
using Microsoft.Lync.Model;
private void CreateNewConversation(string userinput,List<string> receivers)
{
Conversation lyncConversation = lyncClient.ConversationManager.AddConversation();
foreach (string receiver in receivers)
{
Contact contact = lyncClient.ContactManager.GetContactByUri(receiver);
lyncConversation.AddParticipant(contact);
}
InstantMessageModality m = (InstantMessageModality)lyncConversation.Modalities[ModalityTypes.InstantMessage];
m.BeginSendMessage(userinput, null, null);
}
我的代码有问题或者API有错误,或者skype for business不能很好地支持该API?