ServerChannelConnect Method (String, String, String) |
Connects the ServerChannel to OBCOM NetServer specified by the the
supplied arguments.
Namespace:
OBCOM.NetClient
Assembly:
OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax public void Connect(
string serverName,
string netserURI,
string layoutsURI
)
Public Sub Connect (
serverName As String,
netserURI As String,
layoutsURI As String
)
Parameters
- serverName
- Type: SystemString
The name of the ServerLink. - netserURI
- Type: SystemString
The OBCOM NetServer URI. - layoutsURI
- Type: SystemString
The URI used to create a LayoutManager.
Remarks
This is a convenience method implemented by the following call:
Connect(serverName, netserURI, new LayoutManager(layoutsURI));
See Also