diaGlobWrapper Help
Places a call on hold.

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

Syntax

C#
public void HoldCall(
	Channel CurrentChannel
)
Visual Basic (Declaration)
Public Sub HoldCall ( _
	CurrentChannel As Channel _
)
Visual C++
public:
void HoldCall(
	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 a connected state.
Compatibility: Springware-E1/T1 (PDKRT only), Springware-ISDN, DM3-E1/T1, DM3-ISDN, SS7
On success this function will generate an EventReceived.OnHold event
On failure this function will generate an EventReceived.TaskFailed event, an EventReceived.OnHoldRejected event or an exception of type DiaGlobWrapperLibException

Examples

To place the current call on-hold:
C#: objDevice.HoldCall(ChannelInbound);
VB.NET: objDevice.HoldCall(ChannelInbound)

See Also