Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Deletes the queue if it already exists.

Namespace:   Microsoft.WindowsAzure.Storage.Queue
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
public virtual Task<bool> DeleteIfExistsAsync()
 
public:
virtual Task<bool>^ DeleteIfExistsAsync()
 
abstract DeleteIfExistsAsync : unit -> Task<bool>
override DeleteIfExistsAsync : unit -> Task<bool>
 
Public Overridable Function DeleteIfExistsAsync As Task(OfBoolean)

Return Value

Type: System.Threading.Tasks.Task<Boolean>System.Threading.Tasks::Task<Boolean>^System.Threading.Tasks.Task<Boolean>System.Threading.Tasks.Task(Of Boolean)

true if the queue already existed and was deleted; otherwise, false.

Return to top