Пример #1
0
        public static OutputSpeechAttributes GetSsmlSpeech(string ssmlText)
        {
            OutputSpeechAttributes outputSpeech = new OutputSpeechAttributes(OutputSpeechType.Ssml, ssmlText);

            return(outputSpeech);
        }
 public RepromptAttributes()
 {
     OutputSpeech = new OutputSpeechAttributes();
 }
Пример #3
0
        public static OutputSpeechAttributes GetPlainTextSpeech(string text)
        {
            OutputSpeechAttributes outputSpeech = new OutputSpeechAttributes(OutputSpeechType.PlainText, text);

            return(outputSpeech);
        }