| DiaSpringWrapperPlayDTMF Method |
Plays a series of DTMF digits.
Namespace: InkostarAssembly: DiaSpringWrapper (in DiaSpringWrapper.dll) Version: 0.0.0.0
Syntaxpublic void PlayDTMF(
string ChannelName,
string dtmfString
)
Public Sub PlayDTMF (
ChannelName As String,
dtmfString As String
)
public:
void PlayDTMF(
String^ ChannelName,
String^ dtmfString
)
member PlayDTMF :
ChannelName : string *
dtmfString : string -> unit
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