コード例 #1
0
ファイル: Say.cs プロジェクト: jhabjan/twilio-csharp
        /// <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);
        }
コード例 #2
0
ファイル: Say.cs プロジェクト: jhabjan/twilio-csharp
 public Say SsmlW(SsmlW ssmlW)
 {
     this.Append(ssmlW);
     return(this);
 }