| DiaGlobWrapperSendDigits Method (Channel, String) |
diaGlobWrapper Help
Dials a number of digits
Namespace: InkostarAssembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntaxpublic void SendDigits(
Channel CurrentChannel,
string Digits
)
Public Sub SendDigits (
CurrentChannel As Channel,
Digits As String
)
public:
virtual void SendDigits(
Channel^ CurrentChannel,
String^ Digits
) sealed
abstract SendDigits :
CurrentChannel : Channel *
Digits : string -> unit
override SendDigits :
CurrentChannel : Channel *
Digits : string -> unit Parameters
- CurrentChannel
- Type: InkostarChannel
The Channel on the Dialogic board on which the function is to be executed. - Digits
- Type: SystemString
The digits to be dialed.
Remarks
Compatibility: All
On failure this function will generate an exception of type DiaGlobWrapperLibException
Examples
To dial the digits "12345"
C#: objDevice.SendDigits(ChannelOutbound, "12345");
VB.NET: objDevice.SendDigits(ChannelOutbound, "12345")
See Also