VoiceCommandResponse.CreateResponse 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
CreateResponse(VoiceCommandUserMessage)
public:
static VoiceCommandResponse ^ CreateResponse(VoiceCommandUserMessage ^ userMessage);
/// [Windows.Foundation.Metadata.Overload("CreateResponse")]
static VoiceCommandResponse CreateResponse(VoiceCommandUserMessage const& userMessage);
[Windows.Foundation.Metadata.Overload("CreateResponse")]
public static VoiceCommandResponse CreateResponse(VoiceCommandUserMessage userMessage);
function createResponse(userMessage)
Public Shared Function CreateResponse (userMessage As VoiceCommandUserMessage) As VoiceCommandResponse
參數
- userMessage
- VoiceCommandUserMessage
Cortana所說出的訊息,並顯示在Cortana畫布上。 此訊息應該是:
- 有關進度、完成和錯誤畫面的資訊聲明 (請參閱 ReportProgressAsync、 ReportSuccessAsync、 ReportFailureAsync) 。
- 在確認畫面上可以使用 yes 或 no 回答的明確問題, (請參閱 RequestConfirmationAsync) 。
- 使用者從厘清畫面上顯示的選項清單中選取的要求, (請參閱 RequestDisambiguationAsync) 。
傳回
來自背景 App Service 的回應,以取得在 Cortana 畫布上顯示的進度、完成、確認或混淆畫面。
- 屬性
另請參閱
- CreateResponse(VoiceCommandUserMessage, IIterable<VoiceCommandContentTile>)
- 元素和屬性 v1.2
- Cortana 互動
- Cortana 設計指導方針
- Cortana 語音命令範例
適用於
CreateResponse(VoiceCommandUserMessage, IIterable<VoiceCommandContentTile>)
public:
static VoiceCommandResponse ^ CreateResponse(VoiceCommandUserMessage ^ message, IIterable<VoiceCommandContentTile ^> ^ contentTiles);
/// [Windows.Foundation.Metadata.Overload("CreateResponseWithTiles")]
static VoiceCommandResponse CreateResponse(VoiceCommandUserMessage const& message, IIterable<VoiceCommandContentTile> const& contentTiles);
[Windows.Foundation.Metadata.Overload("CreateResponseWithTiles")]
public static VoiceCommandResponse CreateResponse(VoiceCommandUserMessage message, IEnumerable<VoiceCommandContentTile> contentTiles);
function createResponse(message, contentTiles)
Public Shared Function CreateResponse (message As VoiceCommandUserMessage, contentTiles As IEnumerable(Of VoiceCommandContentTile)) As VoiceCommandResponse
參數
- message
- VoiceCommandUserMessage
Cortana所說出的訊息,並顯示在Cortana畫布上。 此訊息應該是:
- 有關進度、完成和錯誤畫面的資訊聲明 (請參閱 ReportProgressAsync、 ReportSuccessAsync、 ReportFailureAsync) 。
- 在確認畫面上可以使用 yes 或 no 回答的明確問題, (請參閱 RequestConfirmationAsync) 。
- 使用者從厘清畫面上顯示的選項清單中選取的要求, (請參閱 RequestDisambiguationAsync) 。
- contentTiles
VoiceCommandContentTile物件的集合,其中包含影像和文字資料,顯示為Cortana畫布上的結果卡片。
傳回
來自背景 App Service 的回應,以取得在 Cortana 畫布上顯示的進度、完成、確認或混淆畫面。
- 屬性