| DiaSpringWrapperMakeCall Method |
Places the channel off-hook and dials the destination number.
Namespace: InkostarAssembly: DiaSpringWrapper (in DiaSpringWrapper.dll) Version: 0.0.0.0
Syntaxpublic void MakeCall(
string ChannelName,
string dialNumber
)
Public Sub MakeCall (
ChannelName As String,
dialNumber As String
)
public:
void MakeCall(
String^ ChannelName,
String^ dialNumber
)
member MakeCall :
ChannelName : string *
dialNumber : string -> unit
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