Click or drag to resize
DiaGlobWrapperBlindTransfer Method
diaGlobWrapper Help
Performs a blind transfer or unsupervised transfer

Namespace: Inkostar
Assembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntax
public void BlindTransfer(
	Channel CurrentChannel,
	string DestinationNumber
)

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