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

Creates CMListener with given name and subject name.

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

Syntax

public CMListenerInfo(
	string name,
	string subject
)
Public Sub New ( _
	name As String, _
	subject As String _
)
public:
CMListenerInfo(
	String^ name, 
	String^ subject
)

Parameters

name
Type: System..::.String
the name of listener to be created.
subject
Type: System..::.String
the subject on which the listener is to be created.

Remarks

CMListeners created with this method are assigned to the default TIBCO Rendezvous CM transport ("$RVCM$"). If the server uses multiple named transports then use the CMListenerInfo(string transport, string name, string subject) constructor, specifying which transport the listener is to be created on.

See Also