NamespaceManager.BeginGetQueues Method (AsyncCallback, Object)

 

Asynchronous version of GetQueues.

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

Syntax

public IAsyncResult BeginGetQueues(
    AsyncCallback callback,
    object state
)
public:
IAsyncResult^ BeginGetQueues(
    AsyncCallback^ callback,
    Object^ state
)
member BeginGetQueues : 
        callback:AsyncCallback *
        state:Object -> IAsyncResult
Public Function BeginGetQueues (
    callback As AsyncCallback,
    state As Object
) As IAsyncResult

Parameters

  • state
    Type: System.Object

    A user-defined object that contains state information about the asynchronous operation. This object is passed to the EndGetQueues delegate when the operation is complete.

Return Value

Type: System.IAsyncResult

An IAsyncResult that references the asynchronous operation to get a queue collection.

Exceptions

Exception Condition
TimeoutException

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.

UnauthorizedAccessException

The NamespaceManager object does not have sufficient permission to perform this operation. You should check to ensure that your NamespaceManager has the correct P:Microsoft.ServiceBus.NamespaceManagerSettings.Credential credentials to perform this operation.

MessagingException

An internal error or unexpected exception occurs.

See Also

BeginGetQueues Overload
NamespaceManager Class
Microsoft.ServiceBus Namespace

Return to top