示例#1
0
        /// <summary>
        /// Create a new <Sip/> element and append it as a child of this element.
        /// </summary>
        /// <param name="sipUrl"> SIP URL, the body of the TwiML Element. </param>
        public Refer ReferSip(Uri sipUrl = null)
        {
            var newChild = new ReferSip(sipUrl);

            this.Append(newChild);
            return(this);
        }
示例#2
0
 public Refer ReferSip(ReferSip referSip)
 {
     this.Append(referSip);
     return(this);
 }