Beispiel #1
0
        /// <summary>
        /// Create a new <P/> 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 P(string words = null)
        {
            var newChild = new SsmlP(words);

            this.Append(newChild);
            return(this);
        }
Beispiel #2
0
 public Say SsmlP(SsmlP ssmlP)
 {
     this.Append(ssmlP);
     return(this);
 }