CloudQueue.EndCreateIfNotExists Method (IAsyncResult) (Microsoft.WindowsAzure.Storage.Queue)

From Microsoft Windows Azure Storage Blob

Returns the result of an asynchronous operation to create 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 bool EndCreateIfNotExists(
	IAsyncResult asyncResult
)
 
public:
virtual bool EndCreateIfNotExists(
	IAsyncResult^ asyncResult
)
 
abstract EndCreateIfNotExists : 
        asyncResult:IAsyncResult -> bool
override EndCreateIfNotExists : 
        asyncResult:IAsyncResult -> bool
 
Public Overridable Function EndCreateIfNotExists (
	asyncResult As IAsyncResult
) As Boolean

Parameters

asyncResult
Type: System.IAsyncResultSystem::IAsyncResult^System.IAsyncResultSystem.IAsyncResult

An IAsyncResult that references the pending asynchronous operation.

Return Value

Type: System.BooleanSystem::BooleanSystem.BooleanSystem.Boolean

true if the queue did not already exist and was created; otherwise, false.

Return to top