Click or drag to resize
DiaGlobWrapperMakeCall Method (Channel, String)
diaGlobWrapper Help
Dials the destination number in an outbound call with no call progress analysis

Namespace: Inkostar
Assembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntax
public void MakeCall(
	Channel CurrentChannel,
	string DestinationNumber
)

Parameters

CurrentChannel
Type: InkostarChannel
The Channel on the Dialogic board on which the function is to be executed.
DestinationNumber
Type: SystemString
The destination number to dial.
Remarks
This function can only be invoked when the channel is in an idle state.
Compatibility: All
On completion this function will generate one of the following events: EventReceived.Connected, EventReceived.Disconnected
On failure this function will generate an EventReceived.TaskFailed event or an exception of type DiaGlobWrapperLibException
Examples
To call extension 4503:
C#: objDevice.MakeCall(ChannelOutbound, "4503");
VB.NET: objDevice.MakeCall(ChannelOutbound, "4503")
See Also