コード例 #1
0
ファイル: SsmlBuilder.cs プロジェクト: dotupNET/AlexaNet
 public SsmlBuilder WithVolume(string text, ProsodyVolume volume)
 {
     textToSpeak.AppendLine(Prosody("volume", volume.ToString(), text));
     return(this);
 }
コード例 #2
0
ファイル: SsmlBuilder.cs プロジェクト: dotupNET/AlexaNet
 public SsmlBuilder Volume(ProsodyVolume volume)
 {
     textToSpeak.AppendLine(GetProsodyStart("volume", volume.ToString()));
     stack.Push("</prosody>");
     return(this);
 }
コード例 #3
0
 public AlexaSpeak Volume(string text, ProsodyVolume volume)
 {
     textToSpeak.AppendLine(Prosody("volume", volume.ToString(), text));
     return(this);
 }