NamespaceManager.BeginGetTopics Method (AsyncCallback, Object)

 

Asynchronous version of GetTopics method.

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

Syntax

public IAsyncResult BeginGetTopics(
    AsyncCallback callback,
    object state
)
public:
IAsyncResult^ BeginGetTopics(
    AsyncCallback^ callback,
    Object^ state
)
member BeginGetTopics : 
        callback:AsyncCallback *
        state:Object -> IAsyncResult
Public Function BeginGetTopics (
    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 EndGetTopics delegate when the operation is complete.

Return Value

Type: System.IAsyncResult

An IAsyncResult object that references the asynchronous operation to get all topics in the service namespace.

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

BeginGetTopics Overload
NamespaceManager Class
Microsoft.ServiceBus Namespace

Return to top