| DiaGlobWrapperWaitForCall Method |
diaGlobWrapper Help
Enables the notification of inbound calls
Namespace: InkostarAssembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntaxpublic void WaitForCall(
Channel CurrentChannel
)
Public Sub WaitForCall (
CurrentChannel As Channel
)
public:
void WaitForCall(
Channel^ CurrentChannel
)
member WaitForCall :
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 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