Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

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

Returns the asynchronous result of the request to check the existence of the queue.

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

Syntax

 
public virtual bool EndExists(
	IAsyncResult asyncResult
)
 
public:
virtual bool EndExists(
	IAsyncResult^ asyncResult
)
 
abstract EndExists : 
        asyncResult:IAsyncResult -> bool
override EndExists : 
        asyncResult:IAsyncResult -> bool
 
Public Overridable Function EndExists (
	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 exists.

Return to top