Share via


ServiceBusNamespaceClient.GetQueues Method

Retrieves an enumerable collection of all queues in the namespace.

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

Syntax

'Declaration
Public Function GetQueues As IEnumerable(Of Queue)
'Usage
Dim instance As ServiceBusNamespaceClient
Dim returnValue As IEnumerable(Of Queue)

returnValue = instance.GetQueues()
public IEnumerable<Queue> GetQueues()
public:
IEnumerable<Queue^>^ GetQueues()
member GetQueues : unit -> IEnumerable<Queue> 
public function GetQueues() : IEnumerable<Queue>

Return Value

Type: System.Collections.Generic.IEnumerable<Queue>
Returns an IEnumerable<T> collection of all queues in the service namespace. Returns an empty collection if no queue exists in this service namespace.

Exceptions

Exception Condition
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.

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