diaGlobWrapper Help
Retrieves a call from the on-hold state.

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

Syntax

C#
public void RetrieveCall(
	Channel CurrentChannel
)
Visual Basic (Declaration)
Public Sub RetrieveCall ( _
	CurrentChannel As Channel _
)
Visual C++
public:
void RetrieveCall(
	Channel^ CurrentChannel
)

Parameters

CurrentChannel
Type: Inkostar..::.Channel
The Channel on the Dialogic board on which the function is to be executed.

Remarks

This function can only be invoked when the call is in an on-hold state.
Compatibility: Springware-E1/T1 (PDKRT only), Springware-ISDN, DM3-E1/T1, DM3-ISDN, SS7
On success this function will generate an EventReceived.Retrieved event
On failure this function will generate an EventReceived.TaskFailed, an EventReceived.RetrieveRejected event or an exception of type DiaGlobWrapperLibException

Examples

To retrieve the current that was placed on-hold:
C#: objDevice.RetrieveCall(ChannelInbound);
VB.NET: objDevice.RetrieveCall(ChannelInbound)

See Also