diaGlobWrapper Help
Queries the call state and returns the CallState enum value

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

Syntax

C#
public DiaGlobWrapperCommon..::.CallState GetCallState(
	Channel CurrentChannel
)
Visual Basic (Declaration)
Public Function GetCallState ( _
	CurrentChannel As Channel _
) As DiaGlobWrapperCommon..::.CallState
Visual C++
public:
DiaGlobWrapperCommon..::.CallState GetCallState(
	Channel^ CurrentChannel
)

Parameters

CurrentChannel
Type: Inkostar..::.Channel
The Channel on the Dialogic board on which the function is to be executed.

Return Value

Returns one of the CallState enumerated values.

Remarks

Compatibility: All
On success this function will return the Inkostar.DiaGlobWrapperCommon.CallState enum value
On failure this function will generate an EventReceived.TaskFailed event or an exception of type DiaGlobWrapperLibException

Examples

To retrieve the current state of the call:
C#: objDevice.GetCallState(ChannelOutbound);
VB.NET: objDevice.GetCallState(ChannelOutbound)

See Also