Share via


ManagementClient.DeleteQueueAsync(String, CancellationToken) Method

Definition

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

public virtual System.Threading.Tasks.Task DeleteQueueAsync (string queuePath, System.Threading.CancellationToken cancellationToken = default);
abstract member DeleteQueueAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.DeleteQueueAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function DeleteQueueAsync (queuePath As String, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

queuePath
String

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

cancellationToken
CancellationToken

Returns

Exceptions

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

The length of path is greater than 260.

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

Queue with this name does not exist.

No sufficient permission to perform this operation. You should check to ensure that your ManagementClient has the correct TokenProvider credentials to perform this operation.

The server is busy. You should wait before you retry the operation.

An internal error or an unexpected exception occured.

Applies to