ClientChannelCreate Method (String, String, String) |
Creates and returns a new ClientChannel instance.
Namespace:
OBCOM.NetClient
Assembly:
OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax public static ClientChannel Create(
string channelName,
string netserURI,
string layoutsURI
)
Public Shared Function Create (
channelName As String,
netserURI As String,
layoutsURI As String
) As ClientChannel
Parameters
- channelName
- Type: SystemString
The name of the new ClientLink. - netserURI
- Type: SystemString
The address and port of OBCOM NetServer. - layoutsURI
- Type: SystemString
The URI to download Layouts.
Return Value
Type:
ClientChannelThe new ClientChannel instance.
Remarks
This is a convenience method implemented by the following call:
return Create(channelName, netserURI, new LayoutManager(layoutsURI), null);
See Also