简体   繁体   English

使用Lync 2010 SDK获取所有打开的对话

[英]Get all opened Conversation using Lync 2010 SDK

I want to get all opened conversations using Lync 2010 SDK and save them using Code. 我想使用Lync 2010 SDK获得所有打开的对话,并使用代码保存它们。

Here is my code 这是我的代码

LyncClient lyncClient = LyncClient.GetClient();
ConversationManager conversationManager = lyncClient.ConversationManager;

Could you tell me what to do after that? 你能告诉我那以后怎么办吗?

I have just recently started working on a similar project. 我最近才开始从事类似的项目。 You can enumerate all conversations using the ConversationManager.Conversations property. 您可以使用ConversationManager.Conversations属性枚举所有对话。

    Dim lc As LyncClient
    lc = LyncClient.GetClient

    For Each c In lc.ConversationManager.Conversations

    Next()

I'm currently trying to figure out how to get all of the text out of a conversation. 我目前正在尝试弄清楚如何从对话中获取所有文本。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM