diaGlobWrapper Help
Retrieves the CT Bus time slot information of a channel

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

Syntax

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

Parameters

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

Return Value

Returns a DeviceInformation object.

Remarks

Compatibility: Springware-E1/T1 (PDKRT only), DM3-E1/T1, DM3-ISDN, DM3-Analog, IP
On success this function will return an Inkostar.DiaGlobWrapperCommon.DeviceInformation object
On failure this function will generate an EventReceived.TaskFailed event or an exception of type DiaGlobWrapperLibException

Examples

To retrieve the timeslot information:
C#: objDevice.GetCTInfo(ChannelOutbound);
VB.NET: objDevice.GetCTInfo(ChannelOutbound)

See Also