3

Lync SDK を使用して Lync クライアントにアクセスするコンソール アプリケーションを使用して、Lync の会話を記録しようとしています。私のコードは次のようになります。

       public void GetNotifiedAboutMessageSent()
    {
        var client = LyncClient.GetClient();

        foreach (var conversation in client.ConversationManager.Conversations)
            foreach (var participant in conversation.Participants)
                ((InstantMessageModality)participant.Modalities[ModalityTypes.InstantMessage]).InstantMessageReceived += participant_InstantMessageReceived;
    }

    //Event handlers
    void participant_InstantMessageReceived(object sender, MessageSentEventArgs e)
    {
        LogText("Message received");
    }

participant_InstantMessageReceived イベントは、メッセージの送受信時に発生しますが、ファイルの送信 (または受信) 時には発生しません。購読できるファイル転送に関するこれと同様のイベント、またはファイルが Lync 経由で送信されたときに通知を受け取る別の方法はありますか?

4

1 に答える 1