ServiceBusNamespaceClient.EndDeleteQueue Method

Ends an asynchronous request to delete a queue.

Namespace:  Microsoft.ServiceBus
Assembly:  Microsoft.ServiceBus.Messaging (in Microsoft.ServiceBus.Messaging.dll)

Syntax

'Declaration
Public Sub EndDeleteQueue ( _
    result As IAsyncResult _
)
'Usage
Dim instance As ServiceBusNamespaceClient
Dim result As IAsyncResult

instance.EndDeleteQueue(result)
public void EndDeleteQueue(
    IAsyncResult result
)
public:
void EndDeleteQueue(
    IAsyncResult^ result
)
member EndDeleteQueue : 
        result:IAsyncResult -> unit 
public function EndDeleteQueue(
    result : IAsyncResult
)

Parameters

Exceptions

Exception Condition
ArgumentException

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

ArgumentOutOfRangeException

The length of path is greater than QueueNameMaximumLength().

TimeoutException

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

MessagingEntityNotFoundException

Queue does not exist under this path.

UnauthorizedAccessException

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

MessagingException

An internal error or unexpected exception occurs.

See Also

Reference

ServiceBusNamespaceClient Class

Microsoft.ServiceBus Namespace