NamespaceManager.BeginGetQueues Method (String, AsyncCallback, Object)

 

Asynchronous version of GetQueues method.

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

Syntax

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

Parameters

  • filter
    Type: System.String

    The sting used to filter the queues.

  • 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.

See Also

BeginGetQueues Overload
NamespaceManager Class
Microsoft.ServiceBus Namespace

Return to top