Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Creates the queue if it does not already exist.

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

Syntax

 
public virtual Task<bool> CreateIfNotExistsAsync(
	QueueRequestOptions options,
	OperationContext operationContext,
	CancellationToken cancellationToken
)
 
public:
virtual Task<bool>^ CreateIfNotExistsAsync(
	QueueRequestOptions^ options,
	OperationContext^ operationContext,
	CancellationToken cancellationToken
)
 
abstract CreateIfNotExistsAsync : 
        options:QueueRequestOptions *
        operationContext:OperationContext *
        cancellationToken:CancellationToken -> Task<bool>
override CreateIfNotExistsAsync : 
        options:QueueRequestOptions *
        operationContext:OperationContext *
        cancellationToken:CancellationToken -> Task<bool>
 
Public Overridable Function CreateIfNotExistsAsync (
	options As QueueRequestOptions,
	operationContext As OperationContext,
	cancellationToken As CancellationToken
) 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 did not already exist and was created; otherwise false.

Remarks

This API performs an existence check and therefore requires read permissions.

Return to top