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