Click or drag to resize
DiaSpringWrapperGetListOfChannels Method
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
public static string[] GetListOfChannels(
	int BoardNumber
)

Parameters

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

Return Value

Type: String
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