| DiaGlobWrapper Constructor |
diaGlobWrapper Help
DiaGlobWrapper constructor.
Namespace: InkostarAssembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntaxpublic DiaGlobWrapper(
List<Channel> Channels
)
Public Sub New (
Channels As List(Of Channel)
)
public:
DiaGlobWrapper(
List<Channel^>^ Channels
)
new :
Channels : List<Channel> -> DiaGlobWrapperParameters
- Channels
- Type: System.Collections.GenericListChannel
A generic collection of Channel objects to be used.
Remarks
On Success this function will generate an event of EventReceived.ChannelReady.
No further operation on the channel can be performed until the EventReceived.ChannelReady event is received.
Compatibility: All
On failure this function will generate an exception of type DiaGlobWrapperLibException
Examples
To create an instance of the DiaGlobWrapper class.
C#: Inkostar.DiaGlobWrapper objDevice = new Inkostar.DiaGlobWrapper(channels);
VB.NET: Dim objDevice As New Inkostar.DiaGlobWrapper(channels)
See Also