NamespaceManager.BeginCreateSubscription Method (SubscriptionDescription, AsyncCallback, Object)

 

Asynchronous version of CreateSubscription method.

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

Syntax

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

Return Value

Type: System.IAsyncResult

An IAsyncResult object that represents the status of the asynchronous create subscription action.

See Also

BeginCreateSubscription Overload
NamespaceManager Class
Microsoft.ServiceBus Namespace

Return to top