NamespaceManager.DeleteQueue(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Azure SDK for .NET