This method deletes a queue.

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

Syntax

Visual Basic
Public Function DeleteQueue ( _
	queue As String, _
	ifUnused As Boolean, _
	ifEmpty As Boolean, _
	noWait As Boolean _
) As AmqpChannel
C#
public AmqpChannel DeleteQueue(
	string queue,
	bool ifUnused,
	bool ifEmpty,
	bool noWait
)
Visual C++
public:
AmqpChannel^ DeleteQueue(
	String^ queue, 
	bool ifUnused, 
	bool ifEmpty, 
	bool noWait
)

Parameters

queue
Type: System..::..String
Queue
ifUnused
Type: System..::..Boolean
Delete only if unused
ifEmpty
Type: System..::..Boolean
Delete only if empty
noWait
Type: System..::..Boolean
No - Wait

Return Value

AmqpChannel

See Also