From Bright Pattern Documentation
< 3.10:Desktop-integration-api-net-version-tutorial
Revision as of 23:57, 11 April 2016 by Sasha (talk | contribs) (Making a call)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
• 3.10 • 3.11 • 3.12 • 3.13 • 3.14 • 3.15 • 3.16 • 3.17 • 3.18

Making a call

The following method is used to make a call:

public ResultCode makeCall(string dnis, Service service, out ADAPI.Item outItem);


The dnis parameter should not contain any non-numeric characters such as “:”, “+”, or “-”.

The output parameter outItem corresponds to the new ACL item generated for the call.


The following event will be raised when the call is dialed:

public event CallDialingCallback callDialingCallback;


When the other party answers the call and the call is connected, the following event will be raised:

public event CallConnectedCallback callConnectedCallback;
< Previous | Next >