This method binds a queue to an exchange.

Namespace:  Kaazing.AMQP
Assembly:  Kaazing.AMQP (in Kaazing.AMQP.dll)

Syntax

Visual Basic
Public Function BindQueue ( _
	queue As String, _
	exchange As String, _
	routingKey As String, _
	noWait As Boolean, _
	arguments As AmqpArguments _
) As AmqpChannel
C#
public AmqpChannel BindQueue(
	string queue,
	string exchange,
	string routingKey,
	bool noWait,
	AmqpArguments arguments
)
Visual C++
public:
AmqpChannel^ BindQueue(
	String^ queue, 
	String^ exchange, 
	String^ routingKey, 
	bool noWait, 
	AmqpArguments^ arguments
)

Parameters

queue
Type: System..::..String
Queue
exchange
Type: System..::..String
Exchange
routingKey
Type: System..::..String
Message routing key
noWait
Type: System..::..Boolean
No - Wait
arguments
Type: Kaazing.AMQP..::..AmqpArguments
Arguments for binding

Return Value

AmqpChannel

See Also