Cortana技能:为什么Cortana不会大声朗读我的提示?

时间:2018-06-01 14:45:08

标签: azure botframework cortana

我使用Bot Framework SDK为Cortana创建了一项技能,它运行得很好,我唯一的问题是Cortana没有大声读出我的提示,这意味着用户需要自己阅读它们。到目前为止我没有找到任何关于此的信息,是否有人知道是否可以让Cortana读取提示以及我需要做什么?

1 个答案:

答案 0 :(得分:2)

你必须再编写几行代码才能实现这一目标!

Activity reply = activity.CreateReply("This is the text that Cortana displays.");
reply.Speak = "This is the text that Cortana will say.";

您可以查看文档here