| DiaGlobWrapperGetCallState Method |
diaGlobWrapper Help
Queries the call state and returns the CallState enum value
Namespace: InkostarAssembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntaxpublic DiaGlobWrapperCommonCallState GetCallState(
Channel CurrentChannel
)
Public Function GetCallState (
CurrentChannel As Channel
) As DiaGlobWrapperCommonCallState
public:
DiaGlobWrapperCommonCallState GetCallState(
Channel^ CurrentChannel
)
member GetCallState :
CurrentChannel : Channel -> DiaGlobWrapperCommonCallState
Parameters
- CurrentChannel
- Type: InkostarChannel
The Channel on the Dialogic board on which the function is to be executed.
Return Value
Type:
DiaGlobWrapperCommonCallStateReturns 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