diaGlobWrapper Help
Dials a number of digits

Namespace:  Inkostar
Assembly:  DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0

Syntax

C#
public void SendDigits(
	Channel CurrentChannel,
	string Digits
)
Visual Basic (Declaration)
Public Sub SendDigits ( _
	CurrentChannel As Channel, _
	Digits As String _
)
Visual C++
public:
virtual void SendDigits(
	Channel^ CurrentChannel, 
	String^ Digits
) sealed

Parameters

CurrentChannel
Type: Inkostar..::.Channel
The Channel on the Dialogic board on which the function is to be executed.
Digits
Type: System..::.String
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