ServiceBusNamespaceClient.BeginDeleteTopic Method

Asynchronous version of DeleteTopic(String).

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

Syntax

'Declaration
Public Function BeginDeleteTopic ( _
    path As String, _
    callback As AsyncCallback, _
    state As Object _
) As IAsyncResult
'Usage
Dim instance As ServiceBusNamespaceClient
Dim path As String
Dim callback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult

returnValue = instance.BeginDeleteTopic(path, _
    callback, state)
public IAsyncResult BeginDeleteTopic(
    string path,
    AsyncCallback callback,
    Object state
)
public:
IAsyncResult^ BeginDeleteTopic(
    String^ path, 
    AsyncCallback^ callback, 
    Object^ state
)
member BeginDeleteTopic : 
        path:string * 
        callback:AsyncCallback * 
        state:Object -> IAsyncResult 
public function BeginDeleteTopic(
    path : String, 
    callback : AsyncCallback, 
    state : Object
) : IAsyncResult

Parameters

  • path
    Type: System.String
    Path of the topic relative to the service namespace base address.

Return Value

Type: System.IAsyncResult
An IAsyncResult object that references the asynchronously deleted topic.

Exceptions

Exception Condition
ArgumentException

path is empty or null, or path starts or ends with "/".

See Also

Reference

ServiceBusNamespaceClient Class

Microsoft.ServiceBus Namespace