Retrieves the list of channel names for a given installed board number.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static string[] GetListOfChannels(
	int BoardNumber
)
Public Shared Function GetListOfChannels ( _
	BoardNumber As Integer _
) As String()
public:
static array<String^>^ GetListOfChannels(
	int BoardNumber
)

Parameters

BoardNumber
Int32
The Dialogic Springware board number installed on the host machine. Pass 1 for the first board, 2 for the second board, etc ...

Return Value

A string array containing the list of channel names

Remarks

None.

Examples

Retrieve the list of channels on the unique installed Dialogic board.
C#: string[] channelnames = DiaSpringWrapper.GetListOfChannels(1);
VB.NET: String() channelnames = DiaSpringWrapper.GetListOfChannels(1)

See Also

Inkostar Namespace