将Lync 2010与外部程序集成

时间:2011-08-22 07:52:36

标签: c# lync lync-2010

如何将Lync 2010与使用所查找信息进行数据库查找并显示小弹出窗口的程序以及带有一些选项的几个按钮进行集成。
该程序已经与其他类型的电话系统一起运行,我需要一个Lync连接器 我不想在Lync中放置选项卡或其他UI。

1 个答案:

答案 0 :(得分:21)

您需要从Lync SDK开始。您可以将应用程序构建为Winforms或WPF应用程序。

登录

要连接并登录正在运行的Lync实例,请从SDK中查看this page。确保保留对表示Lync的LyncClient对象的引用。这可以通过调用静态方法LyncClient.GetClient()

来获得

检测来电

要检测来电,您可以收听ConversationManager.ConversationAdded事件。 ConversationManagerLyncClient个实例的属性。

要确定呼叫是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说明应该有所帮助。