Example #1
0
 public SsmlBuilder WithVolume(string text, ProsodyVolume volume)
 {
     textToSpeak.AppendLine(Prosody("volume", volume.ToString(), text));
     return(this);
 }
Example #2
0
 public SsmlBuilder Volume(ProsodyVolume volume)
 {
     textToSpeak.AppendLine(GetProsodyStart("volume", volume.ToString()));
     stack.Push("</prosody>");
     return(this);
 }
Example #3
0
 public AlexaSpeak Volume(string text, ProsodyVolume volume)
 {
     textToSpeak.AppendLine(Prosody("volume", volume.ToString(), text));
     return(this);
 }