Click or drag to resize
DiaSpringWrapperPlayDTMF Method
Plays a series of DTMF digits.

Namespace: Inkostar
Assembly: DiaSpringWrapper (in DiaSpringWrapper.dll) Version: 0.0.0.0
Syntax
public void PlayDTMF(
	string ChannelName,
	string dtmfString
)

Parameters

ChannelName
Type: SystemString
The Channel name on the Dialogic board on which to play the digits.
dtmfString
Type: SystemString
The DTMF digits to be played.
Remarks
This function will fail if invoked before the [device].Open() function.
Examples
Sends the birthdate as a series of DTMF digits on the first channel.
C#: objDevice.PlayDTMF("dxxxB1C1", "01121960");
VB.NET: objDevice.PlayDTMF("dxxxB1C1", "01121960")
See Also