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

The public constructor used to create a RouteInfo object that is part of a specific zone.

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

Syntax

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

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).
zoneName
Type: System..::.String
the name of the route's zone.
zoneType
Type: TIBCO.EMS.ADMIN..::.ZoneType
the type of routing in the zone, either MultiHop or OneHop.

Remarks

The route does not exist on the server until this RouteInfo is passed to Admin.CreateRoute().

See Also