如何将Lync 2010与使用所查找信息进行数据库查找并显示小弹出窗口的程序以及带有一些选项的几个按钮进行集成。
该程序已经与其他类型的电话系统一起运行,我需要一个Lync连接器
我不想在Lync中放置选项卡或其他UI。
答案 0 :(得分:21)
您需要从Lync SDK开始。您可以将应用程序构建为Winforms或WPF应用程序。
登录
要连接并登录正在运行的Lync实例,请从SDK中查看this page。确保保留对表示Lync的LyncClient
对象的引用。这可以通过调用静态方法LyncClient.GetClient()
检测来电
要检测来电,您可以收听ConversationManager.ConversationAdded
事件。 ConversationManager
是LyncClient
个实例的属性。
要确定呼叫是a)音频呼叫,还是b)呼入(与用户拨打的呼叫相反),您可以使用以下方法:
bool IsIncomingAVCall(Conversation conversation)
{
// Test to see if the call contains the AV modality
bool containsAVModality = conversation.Modalities.ContainsKey(ModalityTypes.AudioVideo);
if (containsAVModality)
{
// Get the state of the AV modality
var state = conversation.Modalities[ModalityTypes.AudioVideo].State;
// 'Notified' means the call is incoming
if (state == ModalityState.Notified) return true;
}
return false;
}
在ConversationAdded
事件中,您应该注册Conversation.ParticipantAdded
事件,以便查看来电者是谁。 EventArgs对象具有Participant
属性,该属性又具有Contact
属性。 Contact
属性有许多属性,包括Uri
,它应该为您提供电话号码(如果这是您需要的)。
然后,您可以拨打电话并弹出信息。
修改:我写了一篇关于屏幕弹出的博文,内容更详细 - here
拨打电话
如果您的应用是WPF,则允许拨打电话的最简单方法是使用StartAudioCallButton控件。否则,here说明应该有所帮助。