Event: Connected
|
Function: |
When a call gets connected, this event is raised. |
|
| Parameters: |
LineIndex(Long) The index of the line where the event is raised. Style(Long)
|
|
|
Description: |
To know how VoiceAngel judge the status of the outbound call. Please refer to Judging the Telephony Line Status. |
|
| Raised By: |
See above. |
|
| See Also: |
Busy, VoicePromptDetected, WaitConnectionTimeout ,Judging the Telephony Line Status. Dial ,Answer |
|
Sample Code In Visual Basic:
'The following code plays a wave file after getting a connected event.
Sub V_Connected(LineIndex as Integer ,fIncoming as Boolean)
V.OpenWaveFile "play.wav"
V.StartPlaying 0,False
End sub
¡¡