| MvComponentConnect Method |
Lets you establish a connection with a the server
identified by its name and hostname.
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax public static MvComponent Connect(
string server,
string host,
int timeout = -1
)
Public Shared Function Connect (
server As String,
host As String,
Optional timeout As Integer = -1
) As MvComponent
public:
static MvComponent^ Connect(
String^ server,
String^ host,
int timeout = -1
)
Parameters
- server
- Type: SystemString
:
The server name. - host
- Type: SystemString
The host name. - timeout (Optional)
- Type: SystemInt32
The timeout for the socket connection in milliseconds.
Return Value
Type:
MvComponent The created component if the connection is successful,
null otherwise.
Remarks
Category: Server connection.
See Also