Click or drag to resize
DiaGlobWrapperWaitForCall Method
diaGlobWrapper Help
Enables the notification of inbound calls

Namespace: Inkostar
Assembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntax
public void WaitForCall(
	Channel CurrentChannel
)

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 after receiving an EventReceived.ChannelReady event.
This function should be invoked each time a new incoming call is to be detected after the previous one has been released (providing the event EventReceived.ChannelReady was received).
Compatibility: All
On failure this function will generate an exception of type DiaGlobWrapperLibException
Examples
To start waiting for an inbound call:
C#: objDevice.WaitForCall(ChannelInbound);
VB.NET: objDevice.WaitForCall(ChannelInbound)
See Also