/// <summary>
 /// Delegate method for the TextToSpeechphotos_DetailStaticControlCommand command.
 /// </summary>
 public void TextToSpeechphotos_DetailStaticControlCommandDelegate()
 {
     _speechService.TextToSpeech(CurrentphotosCollectionSchema.Title);
 }
 /// <summary>
 /// Delegate method for the TextToSpeechfellows_DetailStaticControlCommand command.
 /// </summary>
 public void TextToSpeechfellows_DetailStaticControlCommandDelegate()
 {
     _speechService.TextToSpeech(CurrentfellowsSchema.Subtitle + " " + CurrentfellowsSchema.Description);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Delegate method for the TextToSpeechTheNextOne_DetailStaticControlCommand command.
 /// </summary>
 public void TextToSpeechTheNextOne_DetailStaticControlCommandDelegate()
 {
     _speechService.TextToSpeech(CurrentTheNextOneSchema.Subtitle + " " + CurrentTheNextOneSchema.Description);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Delegate method for the TextToSpeechAccount_DetailStaticControlCommand command.
 /// </summary>
 public void TextToSpeechAccount_DetailStaticControlCommandDelegate()
 {
     _speechService.TextToSpeech(CurrentAccountCollectionSchema.Subtitle + " " + CurrentAccountCollectionSchema.Description);
 }
Exemplo n.º 5
0
 /// <summary>
 /// Delegate method for the TextToSpeechdiary_DetailStaticControlCommand command.
 /// </summary>
 public void TextToSpeechdiary_DetailStaticControlCommandDelegate()
 {
     _speechService.TextToSpeech(CurrentdiarySchema.Subtitle);
 }
Exemplo n.º 6
0
 public async Task SpeechCommandDelegate(string message)
 {
     await _speechService.TextToSpeech(message);
 }