Click or drag to resize
DiaSpringWrapperMakeCall Method
Places the channel off-hook and dials the destination number.

Namespace: Inkostar
Assembly: DiaSpringWrapper (in DiaSpringWrapper.dll) Version: 0.0.0.0
Syntax
public void MakeCall(
	string ChannelName,
	string dialNumber
)

Parameters

ChannelName
Type: SystemString
The Channel name on the Dialogic board on which to make the outbound call.
dialNumber
Type: SystemString
The destination number to be dialled.
Remarks
This function will fail if invoked before the [device].Open() function.
Examples
Place an outbound call on the first channel by dialling 9 for access to the CO line followed by a pause and the destination number.
C#: objDevice.MakeCall("dxxxB1C1", "9,0123456789");
VB.NET: objDevice.MakeCall("dxxxB1C1", "9,0123456789")
See Also