Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

making phone calls with C#

Tags:

c#

tapi

I need a relatively inexpensive solution to make phone calls from the .net platform (C# in particular). it has to be able to dial a number and determine if the line is disconnected, if someone answered, and if someone answer possibly play a message. Thanks for any info.

like image 775
Nick Dat Le Avatar asked Mar 25 '11 16:03

Nick Dat Le


People also ask

Can I use the computer to make a phone call?

To make a call on your PC: Open the Phone Link app and select Calls. In the Search your contacts box, search for a contact name or number. Alternately, you can directly enter a phone number on the dial pad.

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

Can we practice C language in phone?

Android is based on Linux Kernel so it's definitely possible to compile & run C/C++ programs on Android.

Why C is call C?

C is a general purpose computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system. It was named 'C' because many of its features were derived from an earlier language called 'B'.


2 Answers

You can use Twilio to make outgoing calls. They have a REST API you can call from your application. Check out the Making Calls section.

I'm not associated with Twilio - it's just a useful service I use.

like image 112
Tai Squared Avatar answered Sep 21 '22 20:09

Tai Squared


Depending on what resources you have on hand, what you need to use it for, what type of budget you have, there are a bunch of different options. Some will charge you on a per call basis, some let you set something up where you run it in house and you just pay for up front hardware costs and support.

As Tai Squared stated, Twilio is a solid answer. I also know that Cisco has some automated dialer options.

Phone tree is also another that I have used in the past, though integration with them can be hairy. http://www.phonetree.com/

Good luck.

like image 26
Phillip Benages Avatar answered Sep 19 '22 20:09

Phillip Benages