| DiaGlobWrapperStopPlayback Method |
diaGlobWrapper Help
Stops immediately the current playback of the voice prompt.
Namespace: InkostarAssembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntaxpublic void StopPlayback(
Channel CurrentChannel
)
Public Sub StopPlayback (
CurrentChannel As Channel
)
public:
void StopPlayback(
Channel^ CurrentChannel
)
member StopPlayback :
CurrentChannel : Channel -> unit
Parameters
- CurrentChannel
- Type: InkostarChannel
The Channel on the Dialogic board on which the function is to be executed.
Remarks
This function has no effect if no playback is in progress.
Compatibility: All
On failure this function will generate an exception of type DiaGlobWrapperLibException
Examples
To stop the current playback on the inbound channel:
C#: objDevice.StopPlayback(ChannelInbound);
VB.NET: objDevice.StopPlayback(ChannelInbound)
See Also