| DiaGlobWrapperBlindTransfer Method |
diaGlobWrapper Help
Performs a blind transfer or unsupervised transfer
Namespace: InkostarAssembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntaxpublic void BlindTransfer(
Channel CurrentChannel,
string DestinationNumber
)
Public Sub BlindTransfer (
CurrentChannel As Channel,
DestinationNumber As String
)
public:
void BlindTransfer(
Channel^ CurrentChannel,
String^ DestinationNumber
)
member BlindTransfer :
CurrentChannel : Channel *
DestinationNumber : string -> unit
Parameters
- CurrentChannel
- Type: InkostarChannel
The Channel on the Dialogic board on which the function is to be executed. - DestinationNumber
- Type: SystemString
The destination number to transfer the active call to.
Remarks
This function can only be invoked while the call to be transferred is in a connected state.
Compatibility: E1 CAS (PDKRT only), T1 Robbed Bit (PDKRT only)
On success this function will generate an EventReceived.BlindTransferCompleted event
On failure this function will generate an EventReceived.TaskFailed event or an exception of type DiaGlobWrapperLibException
Examples
To perform a blind transfer to extension 4503:
C#: objDevice.BlindTransfer(ChannelInbound, "4503");
VB.NET: objDevice.BlindTransfer(ChannelInbound, "4503")
See Also