diaGlobWrapper Help
Enables the notification of inbound calls

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

Syntax

C#
public void WaitForCall(
	Channel CurrentChannel
)
Visual Basic (Declaration)
Public Sub WaitForCall ( _
	CurrentChannel As Channel _
)
Visual C++
public:
void WaitForCall(
	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 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