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

Create a QueueReceiver object to receive messages from the specified queue using a message selector

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

Syntax

public QueueReceiver CreateReceiver(
	Queue queue,
	string messageSelector
)
Public Function CreateReceiver ( _
	queue As Queue, _
	messageSelector As String _
) As QueueReceiver
public:
QueueReceiver^ CreateReceiver(
	Queue^ queue, 
	String^ messageSelector
)

Parameters

queue
Type: TIBCO.EMS.UFO..::.Queue
the Queue to access
messageSelector
Type: System..::.String
only messages with properties matching the message selector expression are delivered. A value of null or an empty string indicates that there is no message selector for the message consumer.

Remarks

The QueueReceiver object will be recreated during connection recovery process.

See Also