Exemplo n.º 1
0
        /// <summary>
        /// Create a new <W/> element and append it as a child of this element.
        /// </summary>
        /// <param name="words"> Words to speak, the body of the TwiML Element. </param>
        /// <param name="role"> Customize the pronunciation of words by specifying the word’s part of speech or alternate
        ///            meaning </param>
        public Say W(string words = null, string role = null)
        {
            var newChild = new SsmlW(words, role);

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