Share via


Queue.DeleteAsync Method (String, String)

 

Deletes the specified object in the queue.

Namespace:   Microsoft.WindowsAzure.Messaging
Assembly:  Microsoft.WindowsAzure.Messaging.Managed (in Microsoft.WindowsAzure.Messaging.Managed.dll)

Syntax

public static Task DeleteAsync(
    string path,
    string connectionString
)
public:
static Task^ DeleteAsync(
    String^ path,
    String^ connectionString
)
static member DeleteAsync : 
        path:string *
        connectionString:string -> Task
Public Shared Function DeleteAsync (
    path As String,
    connectionString As String
) As Task

Parameters

  • path
    Type: System.String

    Path of the queue relative to the service namespace base address.

  • connectionString
    Type: System.String

    The string used for the connection.

Return Value

Type: System.Threading.Tasks.Task

The object to delete.

See Also

Queue Class
Microsoft.WindowsAzure.Messaging Namespace

Return to top