NamespaceManager.BeginGetRules Method (String, String, AsyncCallback, Object)

 

Asynchronous version of GetRules method.

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

Syntax

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

Parameters

  • topicPath
    Type: System.String

    The path of the topic relative to the service namespace base address.

  • subscriptionName
    Type: System.String

    The name of the subscription.

  • state
    Type: System.Object

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

Return Value

Type: System.IAsyncResult

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

See Also

BeginGetRules Overload
NamespaceManager Class
Microsoft.ServiceBus Namespace

Return to top