Method: BlindTransfer
|
Function: |
Start a blind call transfer without call status judgement and then drop the call. |
|
|
Parameters: |
Number(String): The number to which the call is to be transfered.
The PBX string used to make a hook-flash.This parameter
is used only for a Voice Modem. If the current line is a Voice Board,
it will be ignored, and you should set the PBX string for Hook-Flash in
the TSP configuration dialog for PBX strings. In most PBXs, "!"
is used. A hook-flash means a quick click on the hook of the phone. The
duration of the hook-flash is determined by the PBX to which your telephone
line is linked. If the duration of the Hook-Flash is too long, it will
drop the call; If it is too short, it does not take effect. If you are
using a Voice Board, you should set the duration of the Hook-Flash in
the TSP configuration dialog.If you are using a Voice Modem, you can use
SetHookFlashDuration to set the
duration.
|
|
| Description: |
To transfer a call, you should have the following configuration: 1.A small PBAX in you company or the big PBX from the TeleCom. Your PBAX should have transfer function. If you are using the telephone directly from PBX of the TeleCom, you should make sure that Three-Way Call service is offered for you. 2.A PC with A Voice Modem or a Voice Board plugged in. The line ports of Voice Modem or Voice Board should be linked to the inner port of the PBAX or PBX. And the parameters like the Hook-Flash String, Hook-Flash duration should be set properly.
After BlindTransfer called, the line will make a hook-flash to the PBX and dial the number to transfer(This is termed as a consultation call), then drop the call. BlindTransferDone event will then be raised.
|
|
| Dependencies: |
The call should be in connected status. |
|
| Events Raised: |
||
| See also: |
StartTransfer, CompleteTransfer, CancelTransfer, Hold, Unhold, SwapHold |
Sample Code In Visual Basic:
'The following example show how to transfer a number blindly.
Sub cmdBlindTransfer_click()
va.BlindTransfer "6230396","!"
End Sub
Sub va_BlindTransferDone(LineIndex as Long)
MsgBox "Call has been Transfer."
End Sub