| DiaGlobWrapperMakeCall Method (Channel, String) |
diaGlobWrapper Help
Dials the destination number in an outbound call with no call progress analysis
Namespace: InkostarAssembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntaxpublic void MakeCall(
Channel CurrentChannel,
string DestinationNumber
)
Public Sub MakeCall (
CurrentChannel As Channel,
DestinationNumber As String
)
public:
virtual void MakeCall(
Channel^ CurrentChannel,
String^ DestinationNumber
) sealed
abstract MakeCall :
CurrentChannel : Channel *
DestinationNumber : string -> unit
override MakeCall :
CurrentChannel : Channel *
DestinationNumber : string -> unit 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