ClientChannelCreate Method (String, String, LayoutManager) |
Creates and returns a new ClientChannel with supplied arguments.
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,
LayoutManager layouts
)
Public Shared Function Create (
channelName As String,
netserURI As String,
layouts As LayoutManager
) As ClientChannel
Parameters
- channelName
- Type: SystemString
The name of the new ClientChannel. - netserURI
- Type: SystemString
The address and port of OBCOM NetServer. - layouts
- Type: OBCOM.NetClientLayoutManager
The LayoutManager 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, layouts, null);
See Also