[TIBCO.EMS .NET Admin client library 8.1 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,
	int topicPrefetch
)
Public Sub New ( _
	name As String, _
	url As String, _
	sslParams As Hashtable, _
	zoneName As String, _
	zoneType As ZoneType, _
	topicPrefetch As Integer _
)
public:
RouteInfo(
	String^ name, 
	String^ url, 
	Hashtable^ sslParams, 
	String^ zoneName, 
	ZoneType zoneType, 
	int topicPrefetch
)

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.
topicPrefetch
Type: System..::.Int32
the topic prefetch of this route

Remarks

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

See Also