diaGlobWrapper Help
Performs a blind transfer or unsupervised transfer

Namespace:  Inkostar
Assembly:  DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0

Syntax

C#
public void BlindTransfer(
	Channel CurrentChannel,
	string DestinationNumber
)
Visual Basic (Declaration)
Public Sub BlindTransfer ( _
	CurrentChannel As Channel, _
	DestinationNumber As String _
)
Visual C++
public:
void BlindTransfer(
	Channel^ CurrentChannel, 
	String^ DestinationNumber
)

Parameters

CurrentChannel
Type: Inkostar..::.Channel
The Channel on the Dialogic board on which the function is to be executed.
DestinationNumber
Type: System..::.String
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: Springware-E1/T1 (PDKRT only), DM3-E1/T1, DM3-Analog
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