VoiceCommandResponse.RepeatMessage Property

Definition

The secondary message (for disambiguation and confirmation screens only) that is spoken by Cortana and shown on the Cortana canvas, if a response was not understood.

This message should be both a variation of the first message and one of the following:

  • An unambiguous question that can be answered with either yes or no on confirmation screens (see RequestConfirmationAsync).
  • A request for the user to select from the list of choices presented on disambiguation screens (see RequestDisambiguationAsync).
public:
 property VoiceCommandUserMessage ^ RepeatMessage { VoiceCommandUserMessage ^ get(); void set(VoiceCommandUserMessage ^ value); };
VoiceCommandUserMessage RepeatMessage();

void RepeatMessage(VoiceCommandUserMessage value);
public VoiceCommandUserMessage RepeatMessage { get; set; }
var voiceCommandUserMessage = voiceCommandResponse.repeatMessage;
voiceCommandResponse.repeatMessage = voiceCommandUserMessage;
Public Property RepeatMessage As VoiceCommandUserMessage

Property Value

The message that is spoken or shown by Cortana.

Applies to

See also