CloudQueue.DeleteIfExistsAsync Method (QueueRequestOptions, OperationContext) (Microsoft.WindowsAzure.Storage.Queue)
From Microsoft.WindowsAzure.Storage.Queue
C#
C++
F#
VB
CloudQueue.::..DeleteIfExistsAsync Method (QueueRequestOptions, OperationContext)(QueueRequestOptions^, OperationContext^)(QueueRequestOptions, OperationContext)(QueueRequestOptions, OperationContext)
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(
QueueRequestOptions options,
OperationContext operationContext
)
C++
public:
virtual Task<bool>^ DeleteIfExistsAsync(
QueueRequestOptions^ options,
OperationContext^ operationContext
)
abstract DeleteIfExistsAsync :
options:QueueRequestOptions *
operationContext:OperationContext -> Task<bool>
override DeleteIfExistsAsync :
options:QueueRequestOptions *
operationContext:OperationContext -> Task<bool>
Public Overridable Function DeleteIfExistsAsync (
options As QueueRequestOptions,
operationContext As OperationContext
) As Task(Of Boolean)
Parameters
- options
-
Type:
Microsoft.WindowsAzure.Storage.Queue.QueueRequestOptionsMicrosoft.WindowsAzure.Storage.Queue::QueueRequestOptions^Microsoft.WindowsAzure.Storage.Queue.QueueRequestOptionsMicrosoft.WindowsAzure.Storage.Queue.QueueRequestOptions
A QueueRequestOptions object that specifies additional options for the request.
- operationContext
-
Type:
Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage::OperationContext^Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage.OperationContext
An OperationContext object that represents the context for the current operation.
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
Deletes the queue if it already exists.
Syntax
public virtual Task<bool> DeleteIfExistsAsync( QueueRequestOptions options, OperationContext operationContext )
C++
public: virtual Task<bool>^ DeleteIfExistsAsync( QueueRequestOptions^ options, OperationContext^ operationContext )
abstract DeleteIfExistsAsync : options:QueueRequestOptions * operationContext:OperationContext -> Task<bool> override DeleteIfExistsAsync : options:QueueRequestOptions * operationContext:OperationContext -> Task<bool>
Public Overridable Function DeleteIfExistsAsync ( options As QueueRequestOptions, operationContext As OperationContext ) As Task(Of Boolean)
Parameters
- options
-
Type:
Microsoft.WindowsAzure.Storage.Queue.QueueRequestOptionsMicrosoft.WindowsAzure.Storage.Queue::QueueRequestOptions^Microsoft.WindowsAzure.Storage.Queue.QueueRequestOptionsMicrosoft.WindowsAzure.Storage.Queue.QueueRequestOptions
A QueueRequestOptions object that specifies additional options for the request.
- operationContext
-
Type:
Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage::OperationContext^Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage.OperationContext
An OperationContext object that represents the context for the current operation.
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.