Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Returns the asynchronous result of the request to check whether the container exists.

Namespace:   Microsoft.WindowsAzure.Storage.Blob
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 container exists.

Return to top