/// <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); }
public Say SsmlW(SsmlW ssmlW) { this.Append(ssmlW); return(this); }