예제 #1
0
 /// <summary>
 /// Create a new <Leave/> element and append it as a child of this element.
 /// </summary>
 public VoiceResponse Leave()
 {
     var newChild = new Leave();
     this.Append(newChild);
     return this;
 }
예제 #2
0
 public VoiceResponse Leave(Leave leave)
 {
     this.Append(leave);
     return this;
 }