コード例 #1
0
        public static OutputSpeechAttributes GetSsmlSpeech(string ssmlText)
        {
            OutputSpeechAttributes outputSpeech = new OutputSpeechAttributes(OutputSpeechType.Ssml, ssmlText);

            return(outputSpeech);
        }
コード例 #2
0
 public RepromptAttributes()
 {
     OutputSpeech = new OutputSpeechAttributes();
 }
コード例 #3
0
        public static OutputSpeechAttributes GetPlainTextSpeech(string text)
        {
            OutputSpeechAttributes outputSpeech = new OutputSpeechAttributes(OutputSpeechType.PlainText, text);

            return(outputSpeech);
        }