This method unbinds a queue from an exchange.

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

Syntax

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

Parameters

queue
Type: System..::..String
Queue
exchange
Type: System..::..String
Exchange
routingKey
Type: System..::..String
Routing Key of Binding
arguments
Type: Kaazing.AMQP..::..AmqpArguments
Arguments of binding

Return Value

AmqpChannel

See Also