Traysoft AddTapi.NET 4.0.0.30307 » Developer.Team

Traysoft AddTapi.NET 4.0.0.30307

Traysoft AddTapi.NET 4.0.0.30307
Traysoft AddTapi.NET 4.0.0.30307 | 12.5 Mb


API .NET Telephony Library - easily add telephony features to your C#, VB.NET or C++ application. AddTapi.NET supports Microsoft Telephony Application Programming Interface (TAPI) 1.3 - 2.2 and works with all TAPI-compatible telephony hardware, from voice modems to advanced telephony boards to TAPI-compatible PBX systems.

AddTapi.NET supports TAPI 1.3 - 2.2 and works with all TAPI-compatible telephony hardware, from voice modems to advanced telephony boards to TAPI-compatible PBX systems.

AddTapi.NET requires .NET Framework version 2.0 - 4.5 and works with all .NET development platforms including Visual Studio 2012, Visual Studio 2010, Visual Studio 2008, Visual Studio 2005, Visual C#, Visual Basic .NET (VB.NET) and Visual C++.

AddTapi.NET supports Windows 8, Windows 7, Windows Vista, Windows XP, Windows Server 2012, Windows Server 2008, Windows Server 2003 and Windows 2000.

With AddTapi.NET you can easily add telephony features to your C#, VB.NET or C++ application. AddTapi.NET has everything you need to develop telephony applications such as:

Interactive Voice Response (IVR) Systems
Caller ID Applications
Voice Mail Systems
Phone Dialers
Call Recorders
Notification Systems
Call Tracking Applications
Phone Surveys

AddTapi.NET wraps Microsoft Telephony Application Programming Interface (TAPI) and provides a set of easy-to-use managed classes for developing CTI software. AddTapi.NET supports TAPI 1.3 - 2.2 and works with all TAPI-compatible telephony hardware, from voice modems to advanced telephony boards to TAPI-compatible PBX systems, including:

Dialogic Diva analog and digital boards
Cisco Unified Communication Manager
Avaya IP Office
Panasonic KX-TDA
Nortel BCM
3Com NBX 100
Siemens HiPath
And many others...

AddTapi.NET requires .NET Framework version 2.0 - 4.5 and works with all .NET development platforms including Visual Studio 2012, Visual Studio 2010, Visual Studio 2008, Visual Studio 2005, Visual C#, Visual Basic .NET (VB.NET) and Visual C++.
Why choose AddTapi.NET?

Easy to use without any TAPI knowledge or telephony programming experience.

With AddTapi.NET you can start adding telephony features to your software without spending weeks studying complex TAPI or proprietary telephony hardware API. Unlike other TAPI controls that provide a simple wrapper for TAPI functions, AddTapi.NET does a lot of work under the hood. Just look how easy multi-line Caller ID can be added to your application when you use AddTapi.NET:

Multi-line Caller ID, C# code:

// Initialize AddTapi.NET
TapiApp.Initialize("MyCallerIDApp");
// Add event handler for incoming call notifications
TapiApp.IncomingCall += OnIncomingCall;
// Open all available lines to monitor incoming calls
foreach (TapiLine line in TapiApp.Lines)
{
line.Open(true, null);
}
...

// This method is called when new incoming call is detected
void OnIncomingCall(object sender, TapiEventArgs args)
{
// Display a message to the user
Console.WriteLine("Incoming call from {0} on line {1}",
args.Call.CallerID, args.Line.Name);
}

Multi-line Caller ID, VB.NET code:

' Initialize AddTapi.NET
TapiApp.Initialize("MyCallerIDApp")
' Add event handler for incoming call notifications
AddHandler TapiApp.IncomingCall, AddressOf OnIncomingCall
' Open all available lines to monitor incoming calls
For Each line As TapiLine In TapiApp.Lines
line.Open(True, Nothing)
Next
...

' This method is called when new incoming call is detected
Private Sub OnIncomingCall(ByVal sender As Object, _
ByVal args As TapiEventArgs)
' Display a message to the user
Console.WriteLine("Incoming call from {0} on line {1}", _
args.Call.CallerID, args.Line.Name)
End Sub


Home:
http://www.traysoft.com/addtapi_overview.htm


ONLY for V.I.P