| DiaSpringWrapperGetListOfChannels Method |
Retrieves the list of channel names for a given installed board number.
Namespace: InkostarAssembly: DiaSpringWrapper (in DiaSpringWrapper.dll) Version: 0.0.0.0
Syntaxpublic static string[] GetListOfChannels(
int BoardNumber
)
Public Shared Function GetListOfChannels (
BoardNumber As Integer
) As String()
public:
static array<String^>^ GetListOfChannels(
int BoardNumber
)
static member GetListOfChannels :
BoardNumber : int -> string[]
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:
StringA 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