Exemplo n.º 1
0
        /// <summary>
        /// Create a new <S/> element and append it as a child of this element.
        /// </summary>
        /// <param name="words"> Words to speak, the body of the TwiML Element. </param>
        public Say S(string words = null)
        {
            var newChild = new SsmlS(words);

            this.Append(newChild);
            return(this);
        }
Exemplo n.º 2
0
 public Say SsmlS(SsmlS ssmlS)
 {
     this.Append(ssmlS);
     return(this);
 }