Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用Lync2010 SDK 获取所有打开的对话并使用代码保存它们。
Lync
这是我的代码
LyncClient lyncClient = LyncClient.GetClient(); ConversationManager conversationManager = lyncClient.ConversationManager;
你能告诉我之后该怎么做吗?
我最近才开始从事一个类似的项目。您可以使用 ConversationManager.Conversations 属性枚举所有对话。
Dim lc As LyncClient lc = LyncClient.GetClient For Each c In lc.ConversationManager.Conversations Next()
我目前正在尝试弄清楚如何从对话中获取所有文本。