Example #1
0
 /// <summary>
 /// Send DTMF digits to remote using RFC 2833 payload formats.
 /// </summary>
 /// <param name="call">The current call.</param>
 /// <param name="digits">DTMF string digits to be sent.</param>
 public void DialDtmf(Param.CallParam call, string digits)
 {
     // If created.
     if (_created)
     {
         call.DialDtmf(digits);
     }
     else
     {
         throw new Exception("Create the account first.");
     }
 }
Example #2
0
 /// <summary>
 /// Send DTMF digits to remote using RFC 2833 payload formats.
 /// </summary>
 /// <param name="call">The current call.</param>
 /// <param name="digits">DTMF string digits to be sent.</param>
 public void DialDtmf(Param.CallParam call, string digits)
 {
     call.DialDtmf(digits);
 }