activities
latest
false
重要 :
请注意此内容已使用机器翻译进行了部分本地化。
Communications Mining 活动
Last updated 2024年10月11日
常见问题
在本节中,我们将回答 Communications Mining 框架内的一些常见问题。
对于您的流结果,只需使用语法
StreamResult.Comment.UserProperties(<NAME>).ToString()
。
备注:
The name of your user property should be prefixed with its data type, for example,
Message ID
or number:Order Count
. So the complete expression will be StreamResult.Comment.UserProperties("string:Message ID").ToString()
.
有两种方法可以检查提取内容是否超过阈值:
- 通过其中一个
...OverOccurrenceConfidenceThreshold...
帮助程序函数访问LabelExtraction
,该函数将自动筛选出未超过阈值的LabelExtractions
- 使用以下语法:
LabelExtraction.OccurenceConfidence.HasExceededThreshold(<threshold name>)
使用 Communication Mining 的开箱即用 Exchange 集成时,您可以通过查看
Message ID
用户属性来获取 Exchange 消息 ID。“如何读取用户属性”部分详细介绍了语法。然后,您可以将此消息 ID 与任何 Outlook 活动一起使用,以获取特定电子邮件。
添加流结果后,调度程序框架会将流结果以 JSON 格式保存在 Orchestrator 队列中。要稍后使用此数据,请将通信
UiPath.CommunicationsMining.Activities
活动导入下游流程。然后使用语法 Newtonsoft.Json.JsonCovert.DeserializeObject(of StreamResult)(<json data
here>)
将 JSON 字符串转换回 StreamResult
。