Ejemplo n.º 1
0
        /// <summary>
        /// Create a new <Autopilot/> element and append it as a child of this element.
        /// </summary>
        /// <param name="name"> Autopilot assistant sid or unique name, the body of the TwiML Element. </param>
        public Connect Autopilot(string name = null)
        {
            var newChild = new Autopilot(name);

            this.Append(newChild);
            return(this);
        }
Ejemplo n.º 2
0
 public Connect Autopilot(Autopilot autopilot)
 {
     this.Append(autopilot);
     return(this);
 }