CTI32 Engine Class Library

Engine.StartOutboundCall Method 

If you already have a handle from one of the GetOutboundHandle methods, then kick the thread and make it go. The thread will then call the specified DLL and method.

[Visual Basic]
Public Sub StartOutboundCall( _
   ByVal handle As Integer, _
   ByVal module As String, _
   ByVal method As String, _
   ByVal namespaceDotClass As String, _
   ByVal userData As Object _
)
[C#]
public void StartOutboundCall(
   int handle,
   string module,
   string method,
   string namespaceDotClass,
   object userData
);

Parameters

handle
The handle returned by one of the GetOutboundHandle methods.
module
Path to the DLL that has the Outbound call logic
method
Method in the DLL to call
namespaceDotClass
Namespace.Class (Also known as type)
userData
Object passed for userData to be sent to the outbound routine.

See Also

Engine Class | CTI32Engine Namespace