[TIBCO.EMS .NET Admin client library 6.0 documentation]

The public constructor used to create a RouteInfo object.

Namespace:  TIBCO.EMS.ADMIN
Assembly:  TIBCO.EMS.ADMIN (in TIBCO.EMS.ADMIN.dll)

Syntax

public RouteInfo(
	string name,
	string url,
	Hashtable sslParams
)
Public Sub New ( _
	name As String, _
	url As String, _
	sslParams As Hashtable _
)
public:
RouteInfo(
	String^ name, 
	String^ url, 
	Hashtable^ sslParams
)

Parameters

name
Type: System..::.String
the name of the remote server that this route is to.
url
Type: System..::.String
the URL of the remote server.
sslParams
Type: System.Collections..::.Hashtable
the SSL parameters for the connection to the remote server (can be null).

Remarks

The route does not exist on the server until this RouteInfo is passed to Admin.CreateRoute(). The route created will be a member of the default DAG zone (DEFAULT_DAG_ZONE).

See Also