다음을 통해 공유


VoiceCommandResponse.CreateResponse 메서드

정의

오버로드

CreateResponse(VoiceCommandUserMessage)

ReportProgressAsync, ReportSuccessAsync 또는 ReportFailureAsync 호출에 사용되는 VoiceCommandResponse 개체를 만듭니다.

CreateResponse(VoiceCommandUserMessage, IIterable<VoiceCommandContentTile>)

ReportProgressAsync, ReportSuccessAsync 또는 ReportFailureAsync 호출에 사용되는 VoiceCommandResponse 개체를 만듭니다.

CreateResponse(VoiceCommandUserMessage)

ReportProgressAsync, ReportSuccessAsync 또는 ReportFailureAsync 호출에 사용되는 VoiceCommandResponse 개체를 만듭니다.

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 캔버스에 표시되는 메시지입니다. 이 메시지는 다음과 같습니다.

반환

Cortana 캔버스에 표시되는 진행률, 완료, 확인 또는 명확성 화면에 대한 백그라운드 앱 서비스의 응답입니다.

특성

추가 정보

적용 대상

CreateResponse(VoiceCommandUserMessage, IIterable<VoiceCommandContentTile>)

ReportProgressAsync, ReportSuccessAsync 또는 ReportFailureAsync 호출에 사용되는 VoiceCommandResponse 개체를 만듭니다.

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 캔버스에 표시되는 메시지입니다. 이 메시지는 다음과 같습니다.

contentTiles

IIterable<VoiceCommandContentTile>

IEnumerable<VoiceCommandContentTile>

Cortana 캔버스에 결과 카드로 표시된 이미지 및 텍스트 데이터를 포함하는 VoiceCommandContentTile 개체의 컬렉션입니다.

반환

Cortana 캔버스에 표시되는 진행률, 완료, 확인 또는 명확성 화면에 대한 백그라운드 앱 서비스의 응답입니다.

특성

추가 정보

적용 대상