| DiaGlobWrapperHoldCall Method |
diaGlobWrapper Help
Places a call on hold.
Namespace: InkostarAssembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntaxpublic void HoldCall(
Channel CurrentChannel
)
Public Sub HoldCall (
CurrentChannel As Channel
)
public:
void HoldCall(
Channel^ CurrentChannel
)
member HoldCall :
CurrentChannel : Channel -> unit
Parameters
- CurrentChannel
- Type: InkostarChannel
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: E1 CAS (PDKRT only), T-1 Robbed Bit (PDKRT only), ISDN (BRI and PRI)
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