コード例 #1
0
        /// <summary>
        /// Create a new <Reject/> element and append it as a child of this element.
        /// </summary>
        /// <param name="reason"> Rejection reason </param>
        public VoiceResponse Reject(Reject.ReasonEnum reason = null)
        {
            var newChild = new Reject(reason);

            this.Append(newChild);
            return(this);
        }
コード例 #2
0
ファイル: VoiceResponse.cs プロジェクト: zmk523/twilio-csharp
 public VoiceResponse Reject(Reject reject)
 {
     this.Append(reject);
     return this;
 }