NamespaceManager.DeleteQueue(String) Method

Definition

Deletes the queue described by the path relative to the service namespace base address.

public void DeleteQueue (string path);
member this.DeleteQueue : string -> unit
Public Sub DeleteQueue (path As String)

Parameters

path
String

The path of the queue relative to the service namespace base address.

Exceptions

path is empty or null, or path starts or ends with "/".

The length of path is greater than Microsoft.ServiceBus.Messaging.Constants.QueueNameMaximumLength.

The operation times out. The timeout period is initialized through the NamespaceManagerSettings class. You may need to increase the value of the OperationTimeout property to avoid this exception if the timeout value is relatively low.

Queue does not exist under this path.

The NamespaceManager object does not have sufficient permission to perform this operation. You should check to ensure that your NamespaceManager has the correct TokenProvider credentials to perform this operation.

An internal error or unexpected exception occurs.

Applies to