PlayPromptOptions Enumeration
Prompt playback options
Namespace: CallFlowAssembly: 3CX.CallFlow (in 3CX.CallFlow.dll) Version: 20.0.1
[FlagsAttribute]
public enum PlayPromptOptions
| None | 0 |
Just play the prompt
|
| ResetBufferAtStart | 1 |
resets internal buffer at start of the prompt.
|
| UnblockWhenFinished | 2 |
when prompt with Blocked flag will finish, DTMF input will be unblocked
|
| CancelPlaybackAtFirstChar | 4 |
when DTMF char is coming during prompt playback (even with Blocked flag, prompt will be cancelled.
finished delegate will be called with "false"
|
| Blocked | 8 |
Block dtmf input during playback.
If combined with CancelPlaybackAtFirstChar - prompt will be stopped on any caller DTMF.
If combined with UnblockWhenFinished - dtmf input will be unblocked when prompt will finish (or cancelled)
|